Interface ServerLogoutHandler
-
- All Known Implementing Classes:
CsrfServerLogoutHandler,DelegatingServerLogoutHandler,HeaderWriterServerLogoutHandler,SecurityContextServerLogoutHandler,WebSessionServerLogoutHandler
public interface ServerLogoutHandlerHandles log out- Since:
- 5.0
- See Also:
ServerLogoutSuccessHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<java.lang.Void>logout(WebFilterExchange exchange, org.springframework.security.core.Authentication authentication)Invoked when log out is requested
-
-
-
Method Detail
-
logout
reactor.core.publisher.Mono<java.lang.Void> logout(WebFilterExchange exchange, org.springframework.security.core.Authentication authentication)
Invoked when log out is requested- Parameters:
exchange- the exchangeauthentication- theAuthentication- Returns:
- a completion notification (success or error)
-
-