Interface RemoveAuthorizedClientOAuth2AuthorizationFailureHandler.OAuth2AuthorizedClientRemover
- Enclosing class:
- RemoveAuthorizedClientOAuth2AuthorizationFailureHandler
- 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 static interface RemoveAuthorizedClientOAuth2AuthorizationFailureHandler.OAuth2AuthorizedClientRemover
Removes an
OAuth2AuthorizedClient from an
OAuth2AuthorizedClientRepository or OAuth2AuthorizedClientService.-
Method Summary
Modifier and TypeMethodDescriptionvoidremoveAuthorizedClient(String clientRegistrationId, Authentication principal, Map<String, Object> attributes) Removes theOAuth2AuthorizedClientassociated to the provided client registration identifier and End-UserAuthentication(Resource Owner).
-
Method Details
-
removeAuthorizedClient
void removeAuthorizedClient(String clientRegistrationId, Authentication principal, Map<String, Object> attributes) Removes theOAuth2AuthorizedClientassociated to the provided client registration identifier and End-UserAuthentication(Resource Owner).- Parameters:
clientRegistrationId- the identifier for the client's registrationprincipal- the End-UserAuthentication(Resource Owner)attributes- 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.
-