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

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

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.token ResourceServerTokenServices 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.springsource.html5expense.security.EndpointTokenServices.java

/**
 * Implementation of OAuth2ProviderTokenServices that loads authentication via the OAuth service's authentication endpoint.
 *
 * @author wallsc
 */
public class EndpointTokenServices implements ResourceServerTokenServices {

From source file com.example.TokenServices.java

@Service("tokenServices")
public class TokenServices implements ResourceServerTokenServices {

    private final AccessTokenRepository accessTokenRepository;

    public TokenServices(final AccessTokenRepository accessTokenRepository) {

From source file org.zalando.stups.oauth2.spring.server.TokenInfoResourceServerTokenServices.java

/**
 * This component is used to create an {@link OAuth2Authentication}. Under the
 * hood it takes the 'access_token' from the client-request (done by
 * {@link BearerTokenExtractor} ) and retrieves additional information from the
 * installed 'tokeninfo'-endpoint (https://sec.yourcompany.it/tokeninfo).<br/>
 * Afterwards it extracts 'scope' information and injects these into

From source file org.springframework.cloud.security.oauth2.SpringSocialTokenServices.java

/**
 * @author Dave Syer
 *
 */
public class SpringSocialTokenServices implements ResourceServerTokenServices {

From source file org.springframework.cloud.security.oauth2.resource.SpringSocialTokenServices.java

/**
 * @author Dave Syer
 *
 */
public class SpringSocialTokenServices implements ResourceServerTokenServices {

From source file com.orange.clara.tool.service.SsoUserDetailsService.java

/**
 * Copyright (C) 2016 Orange
 * <p>
 * This software is distributed under the terms and conditions of the 'Apache-2.0'
 * license which can be found in the file 'LICENSE' in this package distribution
 * or at 'https://opensource.org/licenses/Apache-2.0'.

From source file org.springframework.cloud.security.oauth2.UserInfoTokenServices.java

/**
 * @author Dave Syer
 *
 */
public class UserInfoTokenServices implements ResourceServerTokenServices {

From source file org.springframework.boot.autoconfigure.security.oauth2.resource.SpringSocialTokenServices.java

/**
 * {@link ResourceServerTokenServices} backed by Spring Social.
 *
 * @author Dave Syer
 * @since 1.3.0
 */