Interface ServerHttpRequest.Builder
- Enclosing interface:
- ServerHttpRequest
public static interface ServerHttpRequest.Builder
Builder for mutating an existing 
ServerHttpRequest.- 
Method SummaryModifier and TypeMethodDescriptionbuild()Build aServerHttpRequestdecorator with the mutated properties.contextPath(String contextPath) Set the contextPath to use.Set or override the specified header values under the given name.headers(Consumer<HttpHeaders> headersConsumer) Manipulate request headers.method(HttpMethod httpMethod) Set the HTTP method to return.Set the path to use instead of the"rawPath"of the URI of the request with the following conditions: Ifuriis also set, the path given here overrides the path of the given URI.remoteAddress(InetSocketAddress remoteAddress) Set the address of the remote client.Set the SSL session information.Set the URI to use with the following conditions: Ifpathis also set, it overrides the path of the URI provided here.
- 
Method Details- 
methodSet the HTTP method to return.
- 
uriSet the URI to use with the following conditions:- If pathis also set, it overrides the path of the URI provided here.
- If contextPathis also set, or already present, it must match the start of the path of the URI provided here.
 
- If 
- 
pathSet the path to use instead of the"rawPath"of the URI of the request with the following conditions:- If uriis also set, the path given here overrides the path of the given URI.
- If contextPathis also set, or already present, it must match the start of the path given here.
- The given value must begin with a slash.
 
- If 
- 
contextPathSet the contextPath to use.The given value must be a valid contextPathand it must match the start of the path of the URI of the request. That means changing the contextPath, implies also changing the path viapath(String).
- 
headerSet or override the specified header values under the given name.If you need to add header values, remove headers, etc., use headers(Consumer)for greater control.- Parameters:
- headerName- the header name
- headerValues- the header values
- Since:
- 5.1.9
- See Also:
 
- 
headersManipulate request headers. The providedHttpHeaderscontains current request headers, so that theConsumercan overwrite or remove existing values, or use any otherHttpHeadersmethods.- See Also:
 
- 
sslInfoSet the SSL session information. This may be useful in environments where TLS termination is done at the router, but SSL information is made available in some other way such as through a header.- Since:
- 5.0.7
 
- 
remoteAddressSet the address of the remote client.- Since:
- 5.3
 
- 
buildServerHttpRequest build()Build aServerHttpRequestdecorator with the mutated properties.
 
-