org.springframework.security.web.util
Interface RequestMatcher

All Known Implementing Classes:
ELRequestMatcher, IpAddressMatcher

public interface RequestMatcher

Simple strategy to match an HttpServletRequest.

Since:
3.0.2

Method Summary
 boolean matches(javax.servlet.http.HttpServletRequest request)
          Decides whether the rule implemented by the strategy matches the supplied request.
 

Method Detail

matches

boolean matches(javax.servlet.http.HttpServletRequest request)
Decides whether the rule implemented by the strategy matches the supplied request.

Parameters:
request - the request to check for a match
Returns:
true if the request matches, false otherwise