public class NegatedRequestMatcher extends Object implements RequestMatcher
RequestMatcher that will negate the RequestMatcher passed
in. For example, if the RequestMatcher passed in returns true,
NegatedRequestMatcher will return false. If the RequestMatcher
passed in returns false, NegatedRequestMatcher will return true.| 构造器和说明 |
|---|
NegatedRequestMatcher(RequestMatcher requestMatcher)
Creates a new instance
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
matches(javax.servlet.http.HttpServletRequest request)
Decides whether the rule implemented by the strategy matches the supplied request.
|
String |
toString() |
public NegatedRequestMatcher(RequestMatcher requestMatcher)
requestMatcher - the RequestMatcher that will be negated.public boolean matches(javax.servlet.http.HttpServletRequest request)
RequestMatchermatches 在接口中 RequestMatcherrequest - the request to check for a matchCopyright © 2016. All rights reserved.