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
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.security.web.util.matcher.RequestMatchergetRequestMatcher(String pattern, org.springframework.http.HttpMethod httpMethod) Return theRequestMatcherto be used for the specified pattern and http method.
-
Method Details
-
getRequestMatcher
org.springframework.security.web.util.matcher.RequestMatcher getRequestMatcher(String pattern, org.springframework.http.HttpMethod httpMethod) Return theRequestMatcherto be used for the specified pattern and http method.- Parameters:
pattern- the request patternhttpMethod- the http method- Returns:
- a request matcher
-