Package org.springframework.http.server
Interface ServerHttpResponse
- All Superinterfaces:
AutoCloseable
,Closeable
,Flushable
,HttpMessage
,HttpOutputMessage
- All Known Implementing Classes:
DelegatingServerHttpResponse
,ServletServerHttpResponse
Represents a server-side HTTP response.
- Since:
- 3.0
- Author:
- Arjen Poutsma
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close this response, freeing any resources created.void
flush()
Ensure that the headers and the content of the response are written out.void
setStatusCode
(HttpStatusCode status) Set the HTTP status code of the response.Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
Methods inherited from interface org.springframework.http.HttpOutputMessage
getBody
-
Method Details
-
setStatusCode
Set the HTTP status code of the response.- Parameters:
status
- the HTTP status as an HttpStatus enum value
-
flush
Ensure that the headers and the content of the response are written out.After the first flush, headers can no longer be changed. Only further content writing and content flushing is possible.
- Specified by:
flush
in interfaceFlushable
- Throws:
IOException
-
close
void close()Close this response, freeing any resources created.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-