Uses of Class
org.springframework.web.reactive.result.condition.AbstractRequestCondition
Packages that use AbstractRequestCondition
Package
Description
RequestCondition
and implementations for matching requests based on different criteria.-
Uses of AbstractRequestCondition in org.springframework.web.reactive.result.condition
Classes in org.springframework.web.reactive.result.condition with type parameters of type AbstractRequestConditionModifier and TypeClassDescriptionclass
AbstractRequestCondition<T extends AbstractRequestCondition<T>>
A base class forRequestCondition
types providing implementations ofequals(Object)
,hashCode()
, andtoString()
.Modifier and TypeClassDescriptionclass
Implements theRequestCondition
contract by delegating to multipleRequestCondition
types and using a logical conjunction (' && '
) to ensure all conditions match a given request.final class
A logical disjunction (' || ') request condition to match a request's 'Content-Type' header to a list of media type expressions.final class
A logical conjunction (' && '
) request condition that matches a request against a set of header expressions with syntax defined inRequestMapping.headers()
.final class
A logical conjunction (' && '
) request condition that matches a request against a set parameter expressions with syntax defined inRequestMapping.params()
.final class
A logical disjunction (' || ') request condition that matches a request against a set of URL path patterns.final class
A logical disjunction (' || ') request condition to match a request's 'Accept' header to a list of media type expressions.final class
A holder for aRequestCondition
useful when the type of the request condition is not known ahead of time, e.g.final class
A logical disjunction (' || ') request condition that matches a request against a set ofRequestMethods
.