| Package | Description |
|---|---|
| org.springframework.web.reactive.result.condition |
RequestCondition
and implementations for matching requests based on different criteria. |
| org.springframework.web.reactive.result.method |
Infrastructure for handler method processing.
|
| 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(ServerWebExchange exchange)
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,
ServerWebExchange exchange)
Returns:
0 if the two conditions have the same number of header expressions
Less than 0 if "this" instance has more header expressions
Greater than 0 if the "other" instance has more header expressions
|
| Modifier and Type | Method and Description |
|---|---|
HeadersRequestCondition |
RequestMappingInfo.getHeadersCondition()
Returns 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(String name,
PatternsRequestCondition patterns,
RequestMethodsRequestCondition methods,
ParamsRequestCondition params,
HeadersRequestCondition headers,
ConsumesRequestCondition consumes,
ProducesRequestCondition produces,
RequestCondition<?> custom) |