Interface ServerLogoutSuccessHandler
-
- All Known Implementing Classes:
HttpStatusReturningServerLogoutSuccessHandler,RedirectServerLogoutSuccessHandler
public interface ServerLogoutSuccessHandlerStrategy for when log out was successfully performed (typically afterServerLogoutHandleris invoked).- Since:
- 5.0
- See Also:
ServerLogoutHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<java.lang.Void>onLogoutSuccess(WebFilterExchange exchange, org.springframework.security.core.Authentication authentication)Invoked after log out was successful
-
-
-
Method Detail
-
onLogoutSuccess
reactor.core.publisher.Mono<java.lang.Void> onLogoutSuccess(WebFilterExchange exchange, org.springframework.security.core.Authentication authentication)
Invoked after log out was successful- Parameters:
exchange- the exchangeauthentication- theAuthentication- Returns:
- a completion notification (success or error)
-
-