Class OrRequestMatcher
- java.lang.Object
-
- org.springframework.security.web.util.matcher.OrRequestMatcher
-
- All Implemented Interfaces:
RequestMatcher
public final class OrRequestMatcher extends java.lang.Object implements RequestMatcher
RequestMatcher
that will return true if any of the passed inRequestMatcher
instances match.- Since:
- 3.2
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.springframework.security.web.util.matcher.RequestMatcher
RequestMatcher.MatchResult
-
-
Constructor Summary
Constructors Constructor Description OrRequestMatcher(java.util.List<RequestMatcher> requestMatchers)
Creates a new instanceOrRequestMatcher(RequestMatcher... requestMatchers)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matches(javax.servlet.http.HttpServletRequest request)
Decides whether the rule implemented by the strategy matches the supplied request.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.springframework.security.web.util.matcher.RequestMatcher
matcher
-
-
-
-
Constructor Detail
-
OrRequestMatcher
public OrRequestMatcher(java.util.List<RequestMatcher> requestMatchers)
Creates a new instance- Parameters:
requestMatchers
- theRequestMatcher
instances to try
-
OrRequestMatcher
public OrRequestMatcher(RequestMatcher... requestMatchers)
Creates a new instance- Parameters:
requestMatchers
- theRequestMatcher
instances to try
-
-
Method Detail
-
matches
public boolean matches(javax.servlet.http.HttpServletRequest request)
Description copied from interface:RequestMatcher
Decides whether the rule implemented by the strategy matches the supplied request.- Specified by:
matches
in interfaceRequestMatcher
- Parameters:
request
- the request to check for a match- Returns:
- true if the request matches, false otherwise
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-