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 the
org.springframework.web.method package. |
Modifier and Type | Method and Description |
---|---|
HeadersRequestCondition |
HeadersRequestCondition.combine(HeadersRequestCondition other)
Returns a new instance with the union of the header expressions
from "this" and the "other" instance.
|
HeadersRequestCondition |
HeadersRequestCondition.getMatchingCondition(HttpServletRequest request)
Returns "this" instance if the request matches all expressions;
or
null otherwise. |
Modifier and Type | Method and Description |
---|---|
HeadersRequestCondition |
HeadersRequestCondition.combine(HeadersRequestCondition other)
Returns a new instance with the union of the header expressions
from "this" and the "other" instance.
|
int |
HeadersRequestCondition.compareTo(HeadersRequestCondition other,
HttpServletRequest request)
Compare to another condition based on header expressions.
|
Modifier and Type | Method and Description |
---|---|
HeadersRequestCondition |
RequestMappingInfo.getHeadersCondition()
Return the "headers" condition of this
RequestMappingInfo ;
or instance with 0 header expressions (never null ). |
Constructor and Description |
---|
RequestMappingInfo(PatternsRequestCondition patterns,
RequestMethodsRequestCondition methods,
ParamsRequestCondition params,
HeadersRequestCondition headers,
ConsumesRequestCondition consumes,
ProducesRequestCondition produces,
RequestCondition<?> custom)
Creates a new instance with the given request conditions.
|
RequestMappingInfo(java.lang.String name,
PatternsRequestCondition patterns,
RequestMethodsRequestCondition methods,
ParamsRequestCondition params,
HeadersRequestCondition headers,
ConsumesRequestCondition consumes,
ProducesRequestCondition produces,
RequestCondition<?> custom) |