Interface ServerHttpRequest.Builder
- Enclosing interface:
- ServerHttpRequest
public static interface ServerHttpRequest.Builder
Builder for mutating an existing
ServerHttpRequest
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Build aServerHttpRequest
decorator 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: Ifuri
is 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: Ifpath
is also set, it overrides the path of the URI provided here.
-
Method Details
-
method
Set the HTTP method to return. -
uri
Set the URI to use with the following conditions:- If
path
is also set, it overrides the path of the URI provided here. - If
contextPath
is also set, or already present, it must match the start of the path of the URI provided here.
- If
-
path
Set the path to use instead of the"rawPath"
of the URI of the request with the following conditions:- If
uri
is also set, the path given here overrides the path of the given URI. - If
contextPath
is also set, or already present, it must match the start of the path given here. - The given value must begin with a slash.
- If
-
contextPath
Set the contextPath to use.The given value must be a valid
contextPath
and 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)
. -
header
Set 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 nameheaderValues
- the header values- Since:
- 5.1.9
- See Also:
-
headers
Manipulate request headers. The providedHttpHeaders
contains current request headers, so that theConsumer
can overwrite or remove existing values, or use any otherHttpHeaders
methods.- See Also:
-
sslInfo
Set 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
-
remoteAddress
Set the address of the remote client.- Since:
- 5.3
-
build
ServerHttpRequest build()Build aServerHttpRequest
decorator with the mutated properties.
-