Interface ServerLogoutSuccessHandler
- All Known Implementing Classes:
HttpStatusReturningServerLogoutSuccessHandler
,OidcClientInitiatedServerLogoutSuccessHandler
,RedirectServerLogoutSuccessHandler
public interface ServerLogoutSuccessHandler
Strategy for when log out was successfully performed (typically after
ServerLogoutHandler
is invoked).- Since:
- 5.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
onLogoutSuccess
(WebFilterExchange exchange, Authentication authentication) Invoked after log out was successful
-
Method Details
-
onLogoutSuccess
reactor.core.publisher.Mono<Void> onLogoutSuccess(WebFilterExchange exchange, Authentication authentication) Invoked after log out was successful- Parameters:
exchange
- the exchangeauthentication
- theAuthentication
- Returns:
- a completion notification (success or error)
-