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 Type
    Method
    Description
    org.springframework.security.web.util.matcher.RequestMatcher
    Returns a RequestMatcher that matches anonymous requests.
    org.springframework.security.web.util.matcher.RequestMatcher
    Returns a RequestMatcher that matches authenticated requests.
  • Method Details

    • getAuthenticatedRequestMatcher

      org.springframework.security.web.util.matcher.RequestMatcher getAuthenticatedRequestMatcher()
      Returns a RequestMatcher that matches authenticated requests.
    • getAnonymousRequestMatcher

      org.springframework.security.web.util.matcher.RequestMatcher getAnonymousRequestMatcher()
      Returns a RequestMatcher that matches anonymous requests.