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
|
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 © 2015. All rights reserved.