Uses of Class
org.springframework.web.servlet.mvc.condition.AbstractRequestCondition
Packages that use AbstractRequestCondition
Package
Description
Common MVC logic for matching incoming requests based on conditions.
- 
Uses of AbstractRequestCondition in org.springframework.web.servlet.mvc.conditionClasses in org.springframework.web.servlet.mvc.condition with type parameters of type AbstractRequestConditionModifier and TypeClassDescriptionclassAbstractRequestCondition<T extends AbstractRequestCondition<T>>A base class forRequestConditiontypes providing implementations ofequals(Object),hashCode(), andtoString().Subclasses of AbstractRequestCondition in org.springframework.web.servlet.mvc.conditionModifier and TypeClassDescriptionclassImplements theRequestConditioncontract by delegating to multipleRequestConditiontypes and using a logical conjunction (' && ') to ensure all conditions match a given request.final classA logical disjunction (' || ') request condition to match a request's 'Content-Type' header to a list of media type expressions.final classA logical conjunction (' && ') request condition that matches a request against a set of header expressions with syntax defined inRequestMapping.headers().final classA logical conjunction (' && ') request condition that matches a request against a set parameter expressions with syntax defined inRequestMapping.params().final classA logical disjunction (' || ') request condition that matches a request against a set of URL path patterns.classA logical disjunction (' || ') request condition that matches a request against a set of URL path patterns.final classA logical disjunction (' || ') request condition to match a request's 'Accept' header to a list of media type expressions.final classA holder for aRequestConditionuseful when the type of the request condition is not known ahead of time, for example, custom condition.final classA logical disjunction (' || ') request condition that matches a request against a set ofRequestMethods.