public class ServerHttpRequestDecorator extends java.lang.Object implements ServerHttpRequest
ServerHttpRequest and delegates all methods to it.
Sub-classes can override specific methods selectively.ServerHttpRequest.Builder| Constructor and Description |
|---|
ServerHttpRequestDecorator(ServerHttpRequest delegate) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<DataBuffer> |
getBody()
Return the body of the message as a
Publisher. |
MultiValueMap<java.lang.String,HttpCookie> |
getCookies()
Return a read-only map of cookies sent by the client.
|
ServerHttpRequest |
getDelegate() |
HttpHeaders |
getHeaders()
Return the headers of this message.
|
HttpMethod |
getMethod()
Return the HTTP method of the request.
|
java.lang.String |
getMethodValue()
Return the HTTP method of the request as a String value.
|
RequestPath |
getPath()
Returns a structured representation of the request path including the
context path + path within application portions, path segments with
encoded and decoded values, and path parameters.
|
MultiValueMap<java.lang.String,java.lang.String> |
getQueryParams()
Return a read-only map with parsed and decoded query parameter values.
|
java.net.InetSocketAddress |
getRemoteAddress()
Return the remote address where this request is connected to, if available.
|
SslInfo |
getSslInfo()
Return the SSL session information if the request has been transmitted
over a secure protocol including SSL certificates, if available.
|
java.net.URI |
getURI()
Return the URI of the request (including a query string if any,
but only if it is well-formed for a URI representation).
|
java.lang.String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitmutatepublic ServerHttpRequestDecorator(ServerHttpRequest delegate)
public ServerHttpRequest getDelegate()
@Nullable public HttpMethod getMethod()
HttpRequestgetMethod in interface HttpRequestnull
if not resolvable (e.g. in case of a non-standard HTTP method)HttpRequest.getMethodValue(),
HttpMethod.resolve(String)public java.lang.String getMethodValue()
HttpRequestgetMethodValue in interface HttpRequestHttpRequest.getMethod()public java.net.URI getURI()
HttpRequestgetURI in interface HttpRequestnull)public RequestPath getPath()
ServerHttpRequestgetPath in interface ServerHttpRequestpublic MultiValueMap<java.lang.String,java.lang.String> getQueryParams()
ServerHttpRequestgetQueryParams in interface ServerHttpRequestpublic HttpHeaders getHeaders()
HttpMessagegetHeaders in interface HttpMessagenull)public MultiValueMap<java.lang.String,HttpCookie> getCookies()
ServerHttpRequestgetCookies in interface ServerHttpRequestpublic java.net.InetSocketAddress getRemoteAddress()
ServerHttpRequestgetRemoteAddress in interface ServerHttpRequest@Nullable public SslInfo getSslInfo()
ServerHttpRequestgetSslInfo in interface ServerHttpRequestnull if none availablepublic reactor.core.publisher.Flux<DataBuffer> getBody()
ReactiveHttpInputMessagePublisher.getBody in interface ReactiveHttpInputMessagepublic java.lang.String toString()
toString in class java.lang.Object