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

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

Introduction

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

Usage

From source file org.mitre.oauth2.service.OAuth2TokenEntityService.java

public interface OAuth2TokenEntityService extends AuthorizationServerTokenServices, ResourceServerTokenServices {

    @Override
    public OAuth2AccessTokenEntity readAccessToken(String accessTokenValue);

    public OAuth2RefreshTokenEntity getRefreshToken(String refreshTokenValue);

From source file org.apigw.authserver.svc.TokenServices.java

public interface TokenServices
        extends AuthorizationServerTokenServices, ResourceServerTokenServices, ConsumerTokenServices {

    /**
     * The validity (in seconds) of the refresh token.
     * 

From source file com.example.ProxyAuthorizationServerTokenServices.java

/**
 * @author Dave Syer
 *
 */
@Service
public class ProxyAuthorizationServerTokenServices implements AuthorizationServerTokenServices {

From source file org.cloudfoundry.identity.uaa.oauth.token.UaaTokenServices.java

import static org.cloudfoundry.identity.uaa.oauth.Claims.AZP;
import static org.cloudfoundry.identity.uaa.oauth.Claims.AUTHORITIES;
import static org.cloudfoundry.identity.uaa.oauth.Claims.CID;
import static org.cloudfoundry.identity.uaa.oauth.Claims.CLIENT_ID;
import static org.cloudfoundry.identity.uaa.oauth.Claims.EMAIL;
import static org.cloudfoundry.identity.uaa.oauth.Claims.EXP;

From source file org.cloudfoundry.identity.uaa.oauth.UaaTokenServices.java

/**
 * This class provides token services for the UAA. It handles the production and
 * consumption of UAA tokens.
 *
 */
public class UaaTokenServices implements AuthorizationServerTokenServices, ResourceServerTokenServices,