Example usage for org.springframework.security.oauth2.provider.token TokenStore interface-usage

List of usage examples for org.springframework.security.oauth2.provider.token TokenStore interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.token TokenStore interface-usage.

Usage

From source file com.create.security.oauth2.provider.token.SpringCacheTokenStore.java

/**
 * Spring Cache based {@link TokenStore} interface.
 */
public interface SpringCacheTokenStore extends TokenStore {
    String OAUTH2_ACCESS_TOKEN_KEY_GENERATOR = "oauth2AccessTokenKeyGenerator";
    String OAUTH2_REFRESH_TOKEN_KEY_GENERATOR = "oauth2RefreshTokenKeyGenerator";

From source file it.smartcommunitylab.aac.oauth.ExtTokenStore.java

/**
 * @author raman
 *
 */
public interface ExtTokenStore extends TokenStore {

From source file eu.trentorise.smartcampus.permissionprovider.oauth.ExtTokenStore.java

/**
 * @author raman
 *
 */
public interface ExtTokenStore extends TokenStore {

From source file st.malike.auth.server.service.security.TokenStoreService.java

/**
 *
 * @author malike_st
 */
public class TokenStoreService implements TokenStore {

From source file org.socialhistoryservices.security.MongoTokenStore.java

/**
 * OAuth2 provider of tokens. Made for MongoDB
 */
final public class MongoTokenStore implements TokenStore {

    private static final String DATABASE = "iaa";

From source file com.tlantic.integration.authentication.service.security.TokenStoreService.java

public class TokenStoreService implements TokenStore {

    @Autowired
    private OAuth2AccessTokenRepository oAuth2AccessTokenRepository;
    @Autowired
    private OAuth2RefreshTokenRepository oAuth2RefreshTokenRepository;

From source file oauth2.authentication.tokens.TokenServiceImpl.java

public class TokenServiceImpl implements TokenStore {

    private final AuthenticationKeyGenerator authenticationKeyGenerator = new DefaultAuthenticationKeyGenerator();

    private final AccessTokenRepository accessTokenRepository;
    private final RefreshTokenRepository refreshTokenRepository;

From source file com.epam.reportportal.auth.store.OAuth2MongoTokenStore.java

/**
 * @author Andrei Varabyeu
 */
public class OAuth2MongoTokenStore implements TokenStore {

    @Autowired

From source file com.iflytek.edu.cloud.frame.spring.RedisTokenStore.java

/**
 * Create on @201481 @?11:32:55 
 * @author libinsong1204@gmail.com
 */
public class RedisTokenStore implements TokenStore {
    private static final Log LOG = LogFactory.getLog(RedisTokenStore.class);

From source file com.nagarro.core.oauth2.token.provider.HybrisOAuthTokenStore.java

public class HybrisOAuthTokenStore implements TokenStore {
    private static final Logger LOG = Logger.getLogger(HybrisOAuthTokenStore.class);
    private final AuthenticationKeyGenerator authenticationKeyGenerator = new DefaultAuthenticationKeyGenerator();
    private OAuthTokenService oauthTokenService;

    @Override