Example usage for org.springframework.security.web.authentication.rememberme AbstractRememberMeServices subclass-usage

List of usage examples for org.springframework.security.web.authentication.rememberme AbstractRememberMeServices subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication.rememberme AbstractRememberMeServices subclass-usage.

Usage

From source file com.persistent.cloudninja.web.security.CloudNinjaRemembermeService.java

/**
 * A Spring Security service that provides user details based on cookie.
 * 
 * If a user who is not logged in tries to access a secure resource, Spring Security will use this service in an attempt
 * to authenticate the user before resorting to a login form.
 */

From source file org.jasypt.spring.security3.TokenBasedRememberMeServices.java

/**
 * <p>
 * Implementation of <tt>org.springframework.security.web.authentication.rememberme.AbstractRememberMeServices</tt>
 * which provides a "remember-me" cookie arranged in the same way as
 * <tt>org.springframework.security.web.authentication.rememberme.TokenBasedRememberMeServices</tt>, but using a
 * Jasypt {@link StringDigester} passed as a parameter for performing the digest of the signature in the cookie

From source file org.bibsonomy.webapp.util.spring.security.rememberMeServices.LDAPRememberMeServices.java

/**
 * @author dzo
 * @version $Id: LDAPRememberMeServices.java,v 1.7 2011-03-04 16:42:48 folke Exp $
 */
public class LDAPRememberMeServices extends AbstractRememberMeServices {
    private static final Log log = LogFactory.getLog(LDAPRememberMeServices.class);

From source file com.thinkbiganalytics.auth.jwt.JwtRememberMeServices.java

/**
 * Identifies previously remembered users by a JSON Web Token.
 *
 * <p>The token contains the user's names and groups. It is stored as a cookie in the user's browser to authenticate the user in subsequent requests.</p>
 */
public class JwtRememberMeServices extends AbstractRememberMeServices {

From source file org.bibsonomy.webapp.util.spring.security.rememberMeServices.OpenIDRememberMeServices.java

/**
 * - saves on login success the username, openid and a signature (username, openid,  
 *   key) in a cookie
 * - it auto logins the user by redirecting the user to his open id provider
 * 
 * @author dzo