public final class OrRequestMatcher extends java.lang.Object implements RequestMatcher
RequestMatcher
that will return true if any of the passed in
RequestMatcher
instances match.Constructor and Description |
---|
OrRequestMatcher(java.util.List<RequestMatcher> requestMatchers)
Creates a new instance
|
OrRequestMatcher(RequestMatcher... requestMatchers)
Creates a new instance
|
Modifier and Type | Method and Description |
---|---|
boolean |
matches(javax.servlet.http.HttpServletRequest request)
Decides whether the rule implemented by the strategy matches the supplied request.
|
java.lang.String |
toString() |
public OrRequestMatcher(java.util.List<RequestMatcher> requestMatchers)
requestMatchers
- the RequestMatcher
instances to trypublic OrRequestMatcher(RequestMatcher... requestMatchers)
requestMatchers
- the RequestMatcher
instances to trypublic boolean matches(javax.servlet.http.HttpServletRequest request)
RequestMatcher
matches
in interface RequestMatcher
request
- the request to check for a matchpublic java.lang.String toString()
toString
in class java.lang.Object