Example usage for org.springframework.security.oauth2.provider.token.store InMemoryTokenStore InMemoryTokenStore

List of usage examples for org.springframework.security.oauth2.provider.token.store InMemoryTokenStore InMemoryTokenStore

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.token.store InMemoryTokenStore InMemoryTokenStore.

Prototype

InMemoryTokenStore

Source Link

Usage

From source file:org.moserp.infrastructure.authentication.AuthorizationServerConfig.java

@Bean
public TokenStore tokenStore() {
    return new InMemoryTokenStore();
}

From source file:org.appverse.web.framework.backend.security.oauth2.authserver.configuration.inmemory.AuthorizationServerInMemoryStoreConfigurerAdapter.java

@Bean
protected TokenStore tokenStore() {
    return new InMemoryTokenStore();
}

From source file:org.zlogic.vogon.web.SecurityConfig.java

/**
 * Returns the TokenStore instance
 *
 * @return the TokenStore instance
 */
@Bean
public TokenStore tokenStore() {
    return new InMemoryTokenStore();
}