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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetBody()Return the body content.byte[]Return body content as a byte array.Return the body content interpreted as a UTF-8 string.getBodyAsString(Charset charset) Return the body content as a string.Return the headers.
- 
Constructor Details- 
MockHttpOutputMessagepublic MockHttpOutputMessage()
 
- 
- 
Method Details- 
getHeadersReturn the headers.- Specified by:
- getHeadersin interface- HttpMessage
- Returns:
- a corresponding HttpHeaders object (never null)
 
- 
getBodyReturn the body content.- Specified by:
- getBodyin interface- HttpOutputMessage
- Returns:
- the output stream body (never null)
- Throws:
- IOException- in case of I/O errors
 
- 
getBodyAsBytespublic byte[] getBodyAsBytes()Return body content as a byte array.
- 
getBodyAsStringReturn the body content interpreted as a UTF-8 string.
- 
getBodyAsStringReturn the body content as a string.- Parameters:
- charset- the charset to use to turn the body content to a String
 
 
-