Package | Description |
---|---|
org.springframework.web.reactive.result.condition |
RequestCondition
and implementations for matching requests based on different criteria. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRequestCondition<T extends AbstractRequestCondition<T>>
A base class for
RequestCondition types providing implementations of
equals(Object) , hashCode() , and toString() . |
Modifier and Type | Class and Description |
---|---|
class |
CompositeRequestCondition
Implements the
RequestCondition contract by delegating to multiple
RequestCondition types and using a logical conjunction (' && ') to
ensure all conditions match a given request. |
class |
ConsumesRequestCondition
A logical disjunction (' || ') request condition to match a request's
'Content-Type' header to a list of media type expressions.
|
class |
HeadersRequestCondition
A logical conjunction (' && ') request condition that matches a request against
a set of header expressions with syntax defined in
RequestMapping.headers() . |
class |
ParamsRequestCondition
A logical conjunction (' && ') request condition that matches a request against
a set parameter expressions with syntax defined in
RequestMapping.params() . |
class |
PatternsRequestCondition
A logical disjunction (' || ') request condition that matches a request
against a set of URL path patterns.
|
class |
ProducesRequestCondition
A logical disjunction (' || ') request condition to match a request's 'Accept' header
to a list of media type expressions.
|
class |
RequestConditionHolder
A holder for a
RequestCondition useful when the type of the request
condition is not known ahead of time, e.g. |
class |
RequestMethodsRequestCondition
A logical disjunction (' || ') request condition that matches a request
against a set of
RequestMethods . |