Spring Security Framework

org.springframework.security.ui.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$
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 resonse
authentication - the current principal details

Spring Security Framework

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