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 net.prasenjit.security.login.OAuthConfigurer.java

@Configuration
@EnableAuthorizationServer
public class OAuthConfigurer extends AuthorizationServerConfigurerAdapter {

    @Bean
    public JwtAccessTokenConverter jwtAccessTokenConverter() {

From source file com.companyname.PlatOauth2AuthServerConfig.java

/**
 * OAuth2 Authorization Server Configuration
 *
 * @author hmohamed
 */
@Configuration

From source file com.eretailservice.security.OAuth2Configuration.java

@Configuration
@EnableResourceServer
@EnableAuthorizationServer
class OAuth2Configuration extends AuthorizationServerConfigurerAdapter {

    String applicationName = "booking";

From source file org.openbaton.nfvo.security.authentication.OAuth2AuthorizationServerConfig.java

@Configuration
@EnableAuthorizationServer
@EnableResourceServer
public class OAuth2AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
    public static final String RESOURCE_ID = "oauth2-server";

From source file demo.OAuth2AuthorizationServerConfiguration.java

/**
 * @author Dave Syer
 *
 */
@Configuration
@EnableConfigurationProperties(AuthorizationServerProperties.class)

From source file net.prasenjit.auth.config.OAuthConfig.java

/**
 * Created by PRASENJIT-NET on 4/3/2016.
 *
 * @author PRASEN
 * @version $Id: $Id
 */

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

/**
 * OAuth2 Authorization Server that uses an InMemory to keep the tokens.
 * !!! This should not be used on production!!!
 * This way you only need to override
 * configure method to register the clients as shown in the following example.
 *

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

@Configuration
@EnableAuthorizationServer
@EnableResourceServer
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
    @Autowired
    private AuthenticationManager authenticationManager;

From source file de.pksoftware.springstrap.core.config.AuthServerConfigBase.java

@Configuration
@EnableAuthorizationServer
public abstract class AuthServerConfigBase extends AuthorizationServerConfigurerAdapter {

    @Value("${server.url:}")
    protected String serverUrl;

From source file org.appverse.web.framework.backend.security.oauth2.authserver.configuration.jdbcstore.AuthorizationServerWithJDBCStoreConfigurerAdapter.java

/**
 * Convinient setup for an OAuth2 Authorization Server that uses a
 * JdbcTokenStore to keep the tokens. This way you only need to override
 * configure method to register the clients as shown in the following example.
 * 
 * Take into account that ClientDetailsStore, TokenStore, AuthorizationCodeStore