Interface CompositeResourceServerRequestMatcherProvider
- All Known Implementing Classes:
CompositeResourceServerRequestMatcherProviderImpl
public interface CompositeResourceServerRequestMatcherProvider
Interface provides a
RequestMatcher
that will be used a security matcher for the resource server
configuration. Currently, it is used in the Authorization Server and OpenID Connect add-ons.-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.security.web.util.matcher.RequestMatcher
Returns aRequestMatcher
that matches anonymous requests.org.springframework.security.web.util.matcher.RequestMatcher
Returns aRequestMatcher
that matches authenticated requests.
-
Method Details
-
getAuthenticatedRequestMatcher
org.springframework.security.web.util.matcher.RequestMatcher getAuthenticatedRequestMatcher()Returns aRequestMatcher
that matches authenticated requests. -
getAnonymousRequestMatcher
org.springframework.security.web.util.matcher.RequestMatcher getAnonymousRequestMatcher()Returns aRequestMatcher
that matches anonymous requests.
-