Contents
Interface RequestMappingInfo.Builder
- Enclosing class:
RequestMappingInfo
public static interface RequestMappingInfo.Builder
Defines a builder for creating a RequestMappingInfo.
- Since:
- 4.2
- Author:
- Arjen Poutsma, Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Build the RequestMappingInfo.Set the consumes conditions.customCondition
(RequestCondition<?> condition) Set a custom condition to use.Set the header conditions.mappingName
(String name) Set the mapping name.methods
(RequestMethod... methods) Set the request method conditions.Provide additional configuration needed for request mapping purposes.Set the request param conditions.Set the URL path patterns.Set the produces conditions.Set the API version condition.
-
Method Details
-
paths
Set the URL path patterns. -
methods
Set the request method conditions. -
params
Set the request param conditions. -
headers
Set the header conditions.By default this is not set.
-
consumes
Set the consumes conditions. -
produces
Set the produces conditions. -
version
-
mappingName
Set the mapping name. -
customCondition
Set a custom condition to use. -
options
Provide additional configuration needed for request mapping purposes. -
build
RequestMappingInfo build()Build the RequestMappingInfo.
-