Example usage for org.springframework.security.web.authentication.rememberme PersistentTokenRepository interface-usage

List of usage examples for org.springframework.security.web.authentication.rememberme PersistentTokenRepository interface-usage

Introduction

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

Usage

From source file ts.security.MongoDBTokenRepository.java

/**
 *
 * @author njanma
 */
@Component(value = "mongoDBTokenRepository")
public class MongoDBTokenRepository implements PersistentTokenRepository {

From source file com.miserablemind.butter.domain.model.user.user_persistent_logins.impl.PersistentTokenRepositoryImpl.java

/**
 * Implementation of Spring Security interface that is autowired to {@link com.miserablemind.butter.security.WebSecurityContext} to create "rememberMeServices" bean.
 *
 * @author <a href="http://www.miserablemind.com" target="_blank">miserablemind</a>
 */

From source file eu.delving.core.storage.TokenRepo.java

/**
 * Handle the storage of the different tokens
 *
 * @author Gerald de Jong <geralddejong@gmail.com>
 */

From source file com.jiwhiz.domain.account.impl.MongoPersistentTokenRepositoryImpl.java

/**
 * Implementation for {@link PersistentTokenRepository}. Store {@link RememberMeToken} to MongoDB.
 * 
 * @author Yuan Ji
 *
 */

From source file com.sshdemo.common.security.web.authentication.rememberme.JPAPersistentTokenRepository.java

/**
 *
 * @author wangwei
 */
@Service
public class JPAPersistentTokenRepository implements PersistentTokenRepository {

From source file com.jiwhiz.domain.account.impl.PersistentTokenRepositoryImpl.java

/**
 * Implementation for {@link PersistentTokenRepository}. Store {@link RememberMeToken} to RDBMS.
 * 
 * @author Yuan Ji
 *
 */

From source file com.trenako.web.security.PersistentTokenRepositoryImpl.java

/**
 * Concrete implementation for the {@link PersistentTokenRepository} interface.
 * <p>
 * This class is persisting the tokens for the "remember me" function.
 * </p>
 * 

From source file com.github.carlomicieli.nerdmovies.security.MongoPersistentTokenRepository.java

/**
 * @author Carlo Micieli
 */
@Component("persistentTokenRepository")
public class MongoPersistentTokenRepository implements PersistentTokenRepository {

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

/**
 * JDBC based persistent login token repository implementation.
 *
 * @author Luke Taylor
 * @since 2.0
 */

From source file de.steilerdev.myVerein.server.security.RememberMeTokenDataProvider.java

/**
 * This data provider is implementing the necessary functions to enable a persistent token repository. This provider is needed to user the remember me functionality.
 */
public class RememberMeTokenDataProvider implements PersistentTokenRepository {
    @Autowired
    RememberMeTokenRepository rememberMeTokenRepository;