Example usage for org.springframework.security.oauth2.provider.client InMemoryClientDetailsService InMemoryClientDetailsService

List of usage examples for org.springframework.security.oauth2.provider.client InMemoryClientDetailsService InMemoryClientDetailsService

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.client InMemoryClientDetailsService InMemoryClientDetailsService.

Prototype

InMemoryClientDetailsService

Source Link

Usage

From source file:org.joyrest.oauth2.configurer.client.InMemoryClientDetailsServiceConfigurer.java

@Override
protected ClientDetailsService performBuild() {
    InMemoryClientDetailsService clientDetailsService = new InMemoryClientDetailsService();
    clientDetailsService.setClientDetailsStore(clientDetails);
    return clientDetailsService;
}