Interface LogoutSuccessHandler
-
- All Known Implementing Classes:
DelegatingLogoutSuccessHandler
,ForwardLogoutSuccessHandler
,HttpStatusReturningLogoutSuccessHandler
,OidcClientInitiatedLogoutSuccessHandler
,Saml2RelyingPartyInitiatedLogoutSuccessHandler
,SimpleUrlLogoutSuccessHandler
public interface LogoutSuccessHandler
Strategy that is called after a successful logout by theLogoutFilter
, to handle redirection or forwarding to the appropriate destination.Note that the interface is almost the same as
LogoutHandler
but may raise an exception. LogoutHandler implementations expect to be invoked to perform necessary cleanup, so should not throw exceptions.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onLogoutSuccess(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Authentication authentication)
-
-
-
Method Detail
-
onLogoutSuccess
void onLogoutSuccess(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Authentication authentication) throws java.io.IOException, javax.servlet.ServletException
- Throws:
java.io.IOException
javax.servlet.ServletException
-
-