Uses of Class
org.springframework.web.servlet.mvc.condition.HeadersRequestCondition
Packages that use HeadersRequestCondition Package Description org.springframework.web.servlet.mvc.condition Common MVC logic for matching incoming requests based on conditions.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.methodpackage.Uses of HeadersRequestCondition in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return HeadersRequestCondition Modifier and Type Method Description HeadersRequestConditionHeadersRequestCondition. combine(HeadersRequestCondition other)Returns a new instance with the union of the header expressions from "this" and the "other" instance.HeadersRequestConditionHeadersRequestCondition. getMatchingCondition(HttpServletRequest request)Returns "this" instance if the request matches all expressions; ornullotherwise.Methods in org.springframework.web.servlet.mvc.condition with parameters of type HeadersRequestCondition Modifier and Type Method Description HeadersRequestConditionHeadersRequestCondition. combine(HeadersRequestCondition other)Returns a new instance with the union of the header expressions from "this" and the "other" instance.intHeadersRequestCondition. compareTo(HeadersRequestCondition other, HttpServletRequest request)Compare to another condition based on header expressions.Uses of HeadersRequestCondition in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method that return HeadersRequestCondition Modifier and Type Method Description HeadersRequestConditionRequestMappingInfo. getHeadersCondition()Return the "headers" condition of thisRequestMappingInfo; or instance with 0 header expressions (nevernull).Constructors in org.springframework.web.servlet.mvc.method with parameters of type HeadersRequestCondition Constructor Description RequestMappingInfo(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)RequestMappingInfo(PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)Creates a new instance with the given request conditions.