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

All Known Implementing Classes:
AbstractRememberMeServices, PersistentTokenBasedRememberMeServices, SecurityContextLogoutHandler, TokenBasedRememberMeServices

public interface LogoutHandler

Indicates a class that is able to participate in logout handling.

Called by LogoutFilter.

Version:
$Id: LogoutHandler.java 3640 2009-05-04 14:24:54Z ltaylor $
Author:
Ben Alex

Method Summary
 void logout(HttpServletRequest request, HttpServletResponse response, Authentication authentication)
          Causes a logout to be completed.
 

Method Detail

logout

void logout(HttpServletRequest request,
            HttpServletResponse response,
            Authentication authentication)
Causes a logout to be completed. The method must complete successfully.

Parameters:
request - the HTTP request
response - the HTTP response
authentication - the current principal details


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