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

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

Introduction

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

Usage

From source file eu.trentorise.smartcampus.permissionprovider.controller.CookieCleaner.java

/**
 * @author raman
 *
 */
public class CookieCleaner implements LogoutSuccessHandler {

From source file fi.helsinki.opintoni.security.SAMLLogoutSuccessHandler.java

@Component
public class SAMLLogoutSuccessHandler implements LogoutSuccessHandler {

    private final AppConfiguration appConfiguration;

    @Autowired

From source file de.thm.arsnova.CASLogoutSuccessHandler.java

public class CASLogoutSuccessHandler implements LogoutSuccessHandler {

    public static final Logger LOGGER = LoggerFactory.getLogger(CASLogoutSuccessHandler.class);

    private String casUrl;
    private String defaultTarget;

From source file de.knightsoftnet.validators.server.security.HttpLogoutSuccessHandler.java

/**
 * http logout success handler for gwt applications. based on the work of
 * https://github.com/imrabti/gwtp-spring-security
 *
 * @author Manfred Tremmel
 */

From source file org.nthdimenzion.security.presentation.AuthenticationSuccessHandler.java

public class AuthenticationSuccessHandler extends SavedRequestAwareAuthenticationSuccessHandler
        implements LogoutSuccessHandler {

    private final Logger logger = LoggerFactory.getLogger(AuthenticationSuccessHandler.class);

    @Autowired

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

/**
 * Handles the destroy of the server session and delegates the call to the parameterized 
 * logout success handler.
 * 
 * @author Thomas Krautinger
 */

From source file fr.gael.dhus.spring.security.handler.LogoutSuccessHandler.java

@Component
public class LogoutSuccessHandler
        implements org.springframework.security.web.authentication.logout.LogoutSuccessHandler {
    private static final Log LOGGER = LogFactory.getLog(LogoutSuccessHandler.class);

    @Override

From source file org.dockhouse.security.AjaxLogoutSuccessHandler.java

/**
 * Spring Security logout handler, specialized for Ajax requests.
 */
@Component
public class AjaxLogoutSuccessHandler extends AbstractAuthenticationTargetUrlRequestHandler
        implements LogoutSuccessHandler {

From source file com.climate.oada.security.oauth.LogoutImpl.java

/**
 * The LogoutImpl class implements LogoutSuccessHandler interface and implements
 * onLogoutSuccess method to remove access token of the user from tokenStore.
 *
 */
public final class LogoutImpl implements LogoutSuccessHandler {

From source file org.telosystools.saas.security.AjaxLogoutSuccessHandler.java

/**
 * Spring Security logout handler, specialized for Ajax requests.
 */
@Component
public class AjaxLogoutSuccessHandler extends AbstractAuthenticationTargetUrlRequestHandler
        implements LogoutSuccessHandler {