Interface OAuth2AuthorizationSuccessHandler
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Handles when an OAuth 2.0 Client has been successfully authorized (or re-authorized)
 via the Authorization Server.
- Since:
 - 5.3
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidonAuthorizationSuccess(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. 
- 
Method Details
- 
onAuthorizationSuccess
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 (or re-authorized)principal- thePrincipalassociated with the authorized clientattributes- an immutableMapof (optional) attributes present under certain conditions. For example, this might contain ajakarta.servlet.http.HttpServletRequestandjakarta.servlet.http.HttpServletResponseif the authorization was performed within the context of ajakarta.servlet.ServletContext.
 
 -