Package org.springframework.http
Interface HttpOutputMessage
- All Superinterfaces:
- HttpMessage
- All Known Subinterfaces:
- ClientHttpRequest,- ServerHttpResponse,- StreamingHttpOutputMessage
- All Known Implementing Classes:
- AbstractClientHttpRequest,- DelegatingServerHttpResponse,- MockClientHttpRequest,- MockHttpOutputMessage,- ServletServerHttpResponse
Represents an HTTP output message, consisting of headers
 and a writable body.
 
Typically implemented by an HTTP request handle on the client side, or an HTTP response handle on the server side.
- Since:
- 3.0
- Author:
- Arjen Poutsma
- 
Method SummaryMethods inherited from interface org.springframework.http.HttpMessagegetHeaders
- 
Method Details- 
getBodyReturn the body of the message as an output stream.- Returns:
- the output stream body (never null)
- Throws:
- IOException- in case of I/O errors
 
 
-