Interface LogoutHandler
- 
- All Known Implementing Classes:
 AbstractRememberMeServices,CompositeLogoutHandler,CookieClearingLogoutHandler,CsrfLogoutHandler,HeaderWriterLogoutHandler,LogoutSuccessEventPublishingLogoutHandler,PersistentTokenBasedRememberMeServices,SecurityContextLogoutHandler,TokenBasedRememberMeServices
public interface LogoutHandlerIndicates a class that is able to participate in logout handling.Called by
LogoutFilter. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlogout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Authentication authentication)Causes a logout to be completed. 
 - 
 
- 
- 
Method Detail
- 
logout
void logout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Authentication authentication)Causes a logout to be completed. The method must complete successfully.- Parameters:
 request- the HTTP requestresponse- the HTTP responseauthentication- the current principal details
 
 - 
 
 -