org.springframework.security.web.authentication.logout
Interface LogoutSuccessHandler

All Known Implementing Classes:
SimpleUrlLogoutSuccessHandler

public interface LogoutSuccessHandler

Strategy that is called after a successful logout by the LogoutFilter, 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
Version:
$Id: LogoutSuccessHandler.java 3834 2009-08-22 18:02:39Z ltaylor $
Author:
Luke Taylor

Method Summary
 void onLogoutSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication)
           
 

Method Detail

onLogoutSuccess

void onLogoutSuccess(HttpServletRequest request,
                     HttpServletResponse response,
                     Authentication authentication)
                     throws IOException,
                            ServletException
Throws:
IOException
ServletException


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.