Example usage for org.springframework.security.oauth2.config.annotation.web.configuration AuthorizationServerConfigurerAdapter subclass-usage

List of usage examples for org.springframework.security.oauth2.config.annotation.web.configuration AuthorizationServerConfigurerAdapter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.config.annotation.web.configuration AuthorizationServerConfigurerAdapter subclass-usage.

Usage

From source file org.appverse.web.framework.backend.security.oauth2.authserver.configuration.jwtstore.AuthorizationServerWithJWTStoreConfigurerAdapter.java

/**
 * Convinient setup for an OAuth2 Authorization Server that uses a
 * JwtTokenStore. This way you only need to override
 * configure method to register the clients.
 * 
 * Take into account that JwtTokenStore is not a proper store in the regard of keeping the tokens somewhere.

From source file org.springframework.boot.autoconfigure.security.oauth2.authserver.SpringSecurityOAuth2AuthorizationServerConfiguration.java

/**
 * Configuration for a Spring Security OAuth2 authorization server. Back off if another
 * {@link AuthorizationServerConfigurer} already exists or if authorization server is not
 * enabled.
 *
 * @author Greg Turnquist

From source file org.springframework.boot.autoconfigure.security.oauth2.authserver.OAuth2AuthorizationServerConfiguration.java

/**
 * Configuration for a Spring Security OAuth2 authorization server. Back off if another
 * {@link AuthorizationServerConfigurer} already exists or if authorization server is not
 * enabled.
 *
 * @author Greg Turnquist

From source file org.osiam.configuration.OAuth2AuthorizationServerConfig.java

@Configuration
@EnableAuthorizationServer
public class OAuth2AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {

    @Autowired
    private AuthenticationManager authenticationManager;