public class ServerHttpResponseDecorator extends java.lang.Object implements ServerHttpResponse
ServerHttpResponse
and delegates all methods to it.
Sub-classes can override specific methods selectively.Modifier and Type | Field and Description |
---|---|
private ServerHttpResponse |
delegate |
Constructor and Description |
---|
ServerHttpResponseDecorator(ServerHttpResponse delegate) |
Modifier and Type | Method and Description |
---|---|
void |
beforeCommit(java.util.function.Supplier<? extends <any>> action)
Register an action to apply just before the HttpOutputMessage is committed.
|
DataBufferFactory |
bufferFactory()
Return a
DataBufferFactory that can be used to create the body. |
java.lang.String |
encodeUrl(java.lang.String url)
A mechanism for URL rewriting that applications and libraries such as
HTML template libraries to use consistently for all URLs emitted by
the application.
|
MultiValueMap<java.lang.String,ResponseCookie> |
getCookies()
Return a mutable map with the cookies to send to the server.
|
ServerHttpResponse |
getDelegate() |
HttpHeaders |
getHeaders()
Return the headers of this message.
|
HttpStatus |
getStatusCode()
Return the HTTP status code or
null if not set. |
boolean |
isCommitted()
Whether the HttpOutputMessage is committed.
|
void |
registerUrlEncoder(java.util.function.Function<java.lang.String,java.lang.String> encoder)
Register a URL rewriting function for use with
ServerHttpResponse.encodeUrl(java.lang.String) . |
<any> |
setComplete()
Indicate that message handling is complete, allowing for any cleanup or
end-of-processing tasks to be performed such as applying header changes
made via
HttpMessage.getHeaders() to the underlying HTTP message (if not
applied already). |
boolean |
setStatusCode(HttpStatus status)
Set the HTTP status code of the response.
|
java.lang.String |
toString() |
<any> |
writeAndFlushWith(<any> body)
Use the given
Publisher of Publishers to write the body
of the HttpOutputMessage to the underlying HTTP layer, flushing after
each Publisher<DataBuffer> . |
<any> |
writeWith(<any> body)
Use the given
Publisher to write the body of the message to the
underlying HTTP layer. |
private final ServerHttpResponse delegate
public ServerHttpResponseDecorator(ServerHttpResponse delegate)
public ServerHttpResponse getDelegate()
public boolean setStatusCode(HttpStatus status)
ServerHttpResponse
setStatusCode
in interface ServerHttpResponse
status
- the HTTP status as an HttpStatus
enum valuefalse
if the status code has not been set because the HTTP response
is already committed, true
if it has been set correctly.public HttpStatus getStatusCode()
ServerHttpResponse
null
if not set.getStatusCode
in interface ServerHttpResponse
public HttpHeaders getHeaders()
HttpMessage
getHeaders
in interface HttpMessage
null
)public MultiValueMap<java.lang.String,ResponseCookie> getCookies()
ServerHttpResponse
getCookies
in interface ServerHttpResponse
public java.lang.String encodeUrl(java.lang.String url)
ServerHttpResponse
ServerHttpResponse.registerUrlEncoder(java.util.function.Function<java.lang.String, java.lang.String>)
that can insert an id for authentication,
a nonce for CSRF protection, a version for a static resource, etc.encodeUrl
in interface ServerHttpResponse
url
- the URL to encodepublic void registerUrlEncoder(java.util.function.Function<java.lang.String,java.lang.String> encoder)
ServerHttpResponse
ServerHttpResponse.encodeUrl(java.lang.String)
.
The function must return an encoded URL or the same URL.registerUrlEncoder
in interface ServerHttpResponse
encoder
- a URL encoding function to usepublic DataBufferFactory bufferFactory()
ReactiveHttpOutputMessage
DataBufferFactory
that can be used to create the body.bufferFactory
in interface ReactiveHttpOutputMessage
#writeWith(Publisher)
public void beforeCommit(java.util.function.Supplier<? extends <any>> action)
ReactiveHttpOutputMessage
beforeCommit
in interface ReactiveHttpOutputMessage
action
- the action to applypublic boolean isCommitted()
ReactiveHttpOutputMessage
isCommitted
in interface ReactiveHttpOutputMessage
public <any> writeWith(<any> body)
ReactiveHttpOutputMessage
Publisher
to write the body of the message to the
underlying HTTP layer.writeWith
in interface ReactiveHttpOutputMessage
body
- the body content publisherMono
that indicates completion or errorpublic <any> writeAndFlushWith(<any> body)
ReactiveHttpOutputMessage
Publisher
of Publishers
to write the body
of the HttpOutputMessage to the underlying HTTP layer, flushing after
each Publisher<DataBuffer>
.writeAndFlushWith
in interface ReactiveHttpOutputMessage
body
- the body content publisherMono
that indicates completion or errorpublic <any> setComplete()
ReactiveHttpOutputMessage
HttpMessage.getHeaders()
to the underlying HTTP message (if not
applied already).
This method should be automatically invoked at the end of message processing so typically applications should not have to invoke it. If invoked multiple times it should have no side effects.
setComplete
in interface ReactiveHttpOutputMessage
Mono
that indicates completion or errorpublic java.lang.String toString()
toString
in class java.lang.Object