Example usage for org.springframework.security.oauth.provider.token InMemoryProviderTokenServices InMemoryProviderTokenServices

List of usage examples for org.springframework.security.oauth.provider.token InMemoryProviderTokenServices InMemoryProviderTokenServices

Introduction

In this page you can find the example usage for org.springframework.security.oauth.provider.token InMemoryProviderTokenServices InMemoryProviderTokenServices.

Prototype

InMemoryProviderTokenServices

Source Link

Usage

From source file:io.convergencia.training.Application.java

@Bean(name = "oauthProviderTokenServices")
public OAuthProviderTokenServices oauthProviderTokenServices() {
    // NOTE: we don't use the OAuthProviderTokenServices for 0-legged but it cannot be null
    return new InMemoryProviderTokenServices();
}