Package org.springframework.web.client
Class DefaultApiVersionInserter
java.lang.Object
org.springframework.web.client.DefaultApiVersionInserter
- All Implemented Interfaces:
ApiVersionInserter
Default implementation of
ApiVersionInserter
to insert the version
into a request header, query parameter, or the URL path.
Use builder()
to create an instance.
- Since:
- 7.0
- Author:
- Rossen Stoyanchev
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Create a builder.fromHeader
(@Nullable String header) Create a builder for an inserter that sets a header.fromPathSegment
(@Nullable Integer pathSegmentIndex) Create a builder for an inserter that inserts a path segment.fromQueryParam
(@Nullable String queryParam) Create a builder for an inserter that sets a query parameter.insertVersion
(Object version, URI uri) Insert the version into the URI.void
insertVersion
(Object version, HttpHeaders headers) Insert the version into the request headers.
-
Method Details
-
insertVersion
Description copied from interface:ApiVersionInserter
Insert the version into the URI.The default implementation returns the supplied URI unmodified.
- Specified by:
insertVersion
in interfaceApiVersionInserter
- Parameters:
version
- the version to inserturi
- the URI for the request- Returns:
- the updated URI, or the original URI unmodified
-
insertVersion
Description copied from interface:ApiVersionInserter
Insert the version into the request headers.The default implementation does not modify the supplied headers.
- Specified by:
insertVersion
in interfaceApiVersionInserter
- Parameters:
version
- the version to insertheaders
- the request headers
-
fromHeader
Create a builder for an inserter that sets a header.- Parameters:
header
- the name of a header to hold the version
-
fromQueryParam
Create a builder for an inserter that sets a query parameter.- Parameters:
queryParam
- the name of a query parameter to hold the version
-
fromPathSegment
Create a builder for an inserter that inserts a path segment.- Parameters:
pathSegmentIndex
- the index of the path segment to hold the version
-
builder
Create a builder.
-