Interface RequestMatcherProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface that can be used to provide a
RequestMatcher
that can be used with
Spring Security.- Since:
- 3.5.0
- Author:
- Madhura Bhave, Chris Bono
-
Method Summary
Modifier and TypeMethodDescriptiongetRequestMatcher
(String pattern, HttpMethod httpMethod) Return theRequestMatcher
to be used for the specified pattern and http method.
-
Method Details
-
getRequestMatcher
Return theRequestMatcher
to be used for the specified pattern and http method.- Parameters:
pattern
- the request patternhttpMethod
- the http method- Returns:
- a request matcher
-