Interface ServerOAuth2AuthorizationRequestResolver

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      reactor.core.publisher.Mono<org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest> resolve​(org.springframework.web.server.ServerWebExchange exchange)
      Returns the OAuth2AuthorizationRequest resolved from the provided HttpServletRequest or null if not available.
      reactor.core.publisher.Mono<org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest> resolve​(org.springframework.web.server.ServerWebExchange exchange, java.lang.String clientRegistrationId)
      Returns the OAuth2AuthorizationRequest resolved from the provided HttpServletRequest or null if not available.
    • Method Detail

      • resolve

        reactor.core.publisher.Mono<org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest> resolve​(org.springframework.web.server.ServerWebExchange exchange)
        Returns the OAuth2AuthorizationRequest resolved from the provided HttpServletRequest or null if not available.
        Parameters:
        exchange - the ServerWebExchange
        Returns:
        the resolved OAuth2AuthorizationRequest or null if not available
      • resolve

        reactor.core.publisher.Mono<org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest> resolve​(org.springframework.web.server.ServerWebExchange exchange,
                                                                                                                          java.lang.String clientRegistrationId)
        Returns the OAuth2AuthorizationRequest resolved from the provided HttpServletRequest or null if not available.
        Parameters:
        exchange - the ServerWebExchange
        clientRegistrationId - the client registration id
        Returns:
        the resolved OAuth2AuthorizationRequest or null if not available