Interface ReactiveOAuth2AuthorizationSuccessHandler

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ReactiveOAuth2AuthorizationSuccessHandler
Handles when an OAuth 2.0 Client has been successfully authorized (or re-authorized) via the authorization server.
Since:
5.3
  • Method Details

    • onAuthorizationSuccess

      reactor.core.publisher.Mono<Void> onAuthorizationSuccess(OAuth2AuthorizedClient authorizedClient, Authentication principal, Map<String,Object> attributes)
      Called when an OAuth 2.0 Client has been successfully authorized (or re-authorized) via the authorization server.
      Parameters:
      authorizedClient - the client that was successfully authorized
      principal - the Principal associated with the authorized client
      attributes - an immutable Map of extra optional attributes present under certain conditions. For example, this might contain a ServerWebExchange if the authorization was performed within the context of a ServerWebExchange.
      Returns:
      an empty Mono that completes after this handler has finished handling the event.