Example usage for org.springframework.security.web.authentication.session SessionAuthenticationStrategy interface-usage

List of usage examples for org.springframework.security.web.authentication.session SessionAuthenticationStrategy interface-usage

Introduction

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

Usage

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

/**
 * A {@link SessionAuthenticationStrategy} that accepts multiple
 * {@link SessionAuthenticationStrategy} implementations to delegate to. Each
 * {@link SessionAuthenticationStrategy} is invoked in turn. The invocations are short
 * circuited if any exception, (i.e. SessionAuthenticationException) is thrown.
 *

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

/**
 * A base class for performing session fixation protection.
 *
 * @author Rob Winch
 * @since 3.2
 */

From source file com.deep.two.authority.impl.FareAbstractSessionFixationProtection.java

/**
 * A base class for performing session fixation protection.
 * 
 * @author Rob Winch
 * @since 3.2
 */

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

/**
 * The default implementation of {@link SessionAuthenticationStrategy}.
 * <p>
 * Creates a new session for the newly authenticated user if they already have a session (as a defence against
 * session-fixation protection attacks), and copies their session attributes across to the new session.
 * The copying of the attributes can be disabled by setting {@code migrateSessionAttributes} to {@code false}

From source file org.hyperic.hq.ui.security.BaseSessionInitializationStrategy.java

@Component
public class BaseSessionInitializationStrategy implements SessionAuthenticationStrategy {
    private static Log log = LogFactory.getLog(BaseSessionInitializationStrategy.class.getName());
    private SessionManager sessionManager;
    private AuthzSubjectManager authzSubjectManager;
    private AuthzBoss authzBoss;

From source file com.liangc.hq.base.service.permissions.BaseSessionInitializationStrategy.java

@Component("baseSessionInitializationStrategy")
public class BaseSessionInitializationStrategy implements SessionAuthenticationStrategy {
    private static Log log = LogFactory.getLog(BaseSessionInitializationStrategy.class.getName());
    private SessionManager sessionManager;
    private AuthzSubjectManager authzSubjectManager;
    private AuthzBoss authzBoss;