Example usage for org.springframework.security.web.authentication.logout LogoutHandler interface-usage

List of usage examples for org.springframework.security.web.authentication.logout LogoutHandler interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication.logout LogoutHandler interface-usage.

Usage

From source file com.sibvisions.rad.server.security.spring.logout.DestroySessionLogoutHandler.java

/**
 * Handles the destroy of the server session.
 * 
 * @author Thomas Krautinger
 */
public class DestroySessionLogoutHandler extends DestroySessionHandler implements LogoutHandler {

From source file org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler.java

/**
 * Performs a logout by modifying the
 * {@link org.springframework.security.core.context.SecurityContextHolder}.
 * <p>
 * Will also invalidate the {@link HttpSession} if {@link #isInvalidateHttpSession()} is
 * {@code true} and the session is not {@code null}.

From source file org.springframework.session.security.web.authentication.SpringSessionRememberMeServices.java

/**
 * A {@link RememberMeServices} implementation that uses Spring Session backed
 * {@link HttpSession} to provide remember-me service capabilities.
 *
 * @author Vedran Pavic
 * @since 1.3.0

From source file com.sun.identity.provider.springsecurity.OpenSSOLogoutHandler.java

/**
 * It is in charge of doing the logout in the application and in every application
 * where the user logged via Single sign-on.
 * @see LogoutHandler
 */
public class OpenSSOLogoutHandler implements LogoutHandler {

From source file it.scoppelletti.programmerpower.web.security.SsoAuthenticationService.java

/**
 * Servizio di autenticazione <ACRONYM TITLE="Single Sign-On">SSO</ACRONYM>.
 * 
 * <P>L&rsquo;integrazione del servizio SSO con Spring Security &egrave;
 * realizzata attraverso l&rsquo;interfaccia {@code RememberMeServices}:
 * effettivamente sia un servizio SSO che un servizio di autenticazione

From source file org.geoserver.security.onelogin.OneloginAuthenticationFilter.java

/**
 * OneLogin Authentication filter that configures SP metadata discovery filter and delegates to {@link #SAMLEntryPoint} the SAML authentication
 * process
 * 
 * @author Xandros
 */

From source file org.egov.infstr.security.spring.filter.CustomLogoutHandler.java

@Component
public class CustomLogoutHandler implements LogoutHandler {

    @Autowired
    private SystemAuditService systemAuditService;

From source file org.springframework.security.web.authentication.rememberme.AbstractRememberMeServices.java

/**
 * Base class for RememberMeServices implementations.
 *
 * @author Luke Taylor
 * @author Rob Winch
 * @author Edd Melndez