Java 类org.springframework.boot.autoconfigure.security.oauth2.authserver.AuthorizationServerProperties 实例源码

项目:jsonwebtoken    文件:JwtOAuth2AutoConfiguration.java   
public AuthorizationServerConfiguration(BaseClientDetails details, AuthenticationManager authenticationManager,
                                        ObjectProvider<TokenStore> tokenStore,
                                        ObjectProvider<AccessTokenConverter> tokenConverter,
                                        ObjectProvider<TokenEnhancer> tokenEnhancer,
                                        AuthorizationServerProperties properties) {
    super(details, authenticationManager, tokenStore, tokenConverter, properties);
    this.tokenEnhancer = tokenEnhancer.getIfAvailable();
}
项目:spring-cloud-dataflow    文件:OAuth2TestServer.java   
public MyOAuth2AuthorizationServerConfiguration(BaseClientDetails details,
        AuthenticationManager authenticationManager, ObjectProvider<TokenStore> tokenStore,
        ObjectProvider<AccessTokenConverter> tokenConverter, AuthorizationServerProperties properties) {
    super(details, authenticationManager, tokenStore, tokenConverter, properties);
}
项目:spring-cloud-skipper    文件:OAuth2TestServer.java   
public MyOAuth2AuthorizationServerConfiguration(BaseClientDetails details,
        AuthenticationManager authenticationManager, ObjectProvider<TokenStore> tokenStore,
        ObjectProvider<AccessTokenConverter> tokenConverter, AuthorizationServerProperties properties) {
    super(details, authenticationManager, tokenStore, tokenConverter, properties);
}