Package org.springframework.mock.http
Class MockHttpOutputMessage
java.lang.Object
org.springframework.mock.http.MockHttpOutputMessage
- All Implemented Interfaces:
HttpMessage
,HttpOutputMessage
- Direct Known Subclasses:
MockClientHttpRequest
Mock implementation of
HttpOutputMessage
.- Since:
- 3.2
- Author:
- Rossen Stoyanchev
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetBody()
Return the body of the message as an output stream.byte[]
Return the body content as a byte array.Return the body content interpreted as a UTF-8 string.getBodyAsString
(Charset charset) Return the body content interpreted as a string using the supplied character set.Return the headers of this message.
-
Constructor Details
-
MockHttpOutputMessage
public MockHttpOutputMessage()
-
-
Method Details
-
getHeaders
Description copied from interface:HttpMessage
Return the headers of this message.- Specified by:
getHeaders
in interfaceHttpMessage
- Returns:
- a corresponding HttpHeaders object (never
null
)
-
getBody
Description copied from interface:HttpOutputMessage
Return the body of the message as an output stream.- Specified by:
getBody
in interfaceHttpOutputMessage
- Returns:
- the output stream body (never
null
) - Throws:
IOException
- in case of I/O errors
-
getBodyAsBytes
public byte[] getBodyAsBytes()Return the body content as a byte array. -
getBodyAsString
Return the body content interpreted as a UTF-8 string. -
getBodyAsString
Return the body content interpreted as a string using the supplied character set.- Parameters:
charset
- the charset to use to turn the body content into a String
-