Class HttpRequestValues
java.lang.Object
org.springframework.web.service.invoker.HttpRequestValues
- Direct Known Subclasses:
ReactiveHttpRequestValues
Container for HTTP request values extracted from an
@HttpExchange
-annotated
method and argument values passed to it. This is then given to
HttpExchangeAdapter
to adapt to the underlying HTTP client.- Since:
- 6.0
- Author:
- Rossen Stoyanchev, Olga Maciaszek-Sharma
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder forHttpRequestValues
.static interface
Expose static metadata from@HttpExchange
annotation attributes.static interface
A contract that allows further customization ofHttpRequestValues
in addition to those added by argument resolvers. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
HttpRequestValues
(@Nullable HttpMethod httpMethod, @Nullable URI uri, @Nullable UriBuilderFactory uriBuilderFactory, @Nullable String uriTemplate, Map<String, String> uriVariables, HttpHeaders headers, MultiValueMap<String, String> cookies, @Nullable Object version, Map<String, Object> attributes, @Nullable Object bodyValue) ConstructHttpRequestValues
. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpRequestValues.Builder
builder()
Return a builder forHttpRequestValues
.Return the attributes associated with the request, or an empty map.Return the request body as a value to be serialized, if set.Return the cookies for the request, or an empty map.Return the headers for the request, if any.Return the HTTP method to use for the request.getUri()
Return the URL to use.Return the URL template for the request.Return the URL template variables, or an empty map.
-
Constructor Details
-
HttpRequestValues
protected HttpRequestValues(@Nullable HttpMethod httpMethod, @Nullable URI uri, @Nullable UriBuilderFactory uriBuilderFactory, @Nullable String uriTemplate, Map<String, String> uriVariables, HttpHeaders headers, MultiValueMap<String, String> cookies, @Nullable Object version, Map<String, Object> attributes, @Nullable Object bodyValue) ConstructHttpRequestValues
.- Since:
- 6.1
-
-
Method Details
-
getHttpMethod
Return the HTTP method to use for the request. -
getUri
Return the URL to use.Typically, this comes from a
URI
method argument, which provides the caller with the option to override theuriTemplate
from class and methodHttpExchange
annotations. -
getUriBuilderFactory
Return theUriBuilderFactory
to expand theuriTemplate
andgetUriVariables()
with.The
UriBuilderFactory
is passed into the HTTP interface method in order to override the UriBuilderFactory (and its baseUrl) used by the underlying client.- Since:
- 6.1
-
getUriTemplate
-
getUriVariables
-
getHeaders
Return the headers for the request, if any. -
getCookies
Return the cookies for the request, or an empty map. -
getApiVersion
-
getAttributes
-
getBodyValue
-
builder
Return a builder forHttpRequestValues
.
-