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

项目:initiatives_backend_auth    文件:AuthServerConfiguration.java   
public AuthServerConfiguration(AuthenticationManager authenticationManager,
                               CertProperties certProperties,
                               OAuth2ClientProperties oAuth2ClientProperties,
                               TokenProperties tokenProperties,
                               ResourceLoader resourceLoader) {
    this.authenticationManager = authenticationManager;
    this.certProperties = certProperties;
    this.oAuth2ClientProperties = oAuth2ClientProperties;
    this.tokenProperties = tokenProperties;
    this.resourceLoader = resourceLoader;
}
项目:spring-security-oauth2-boot    文件:OAuth2AuthorizationServerConfiguration.java   
protected ClientDetailsLogger(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:spring-security-oauth2-boot    文件:OAuth2AuthorizationServerConfiguration.java   
protected BaseClientDetailsConfiguration(OAuth2ClientProperties client) {
    this.client = client;
}
项目:spring-security-oauth2-boot    文件:ResourceServerTokenServicesConfigurationTests.java   
public ResourceServerPropertiesConfiguration(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:initiatives_backend_auth    文件:TokenService.java   
public TokenService(OAuth2ClientProperties oAuth2ClientProperties, SSOProperties ssoProperties) {
    this.oAuth2ClientProperties = oAuth2ClientProperties;
    this.ssoProperties = ssoProperties;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:OAuth2AuthorizationServerConfiguration.java   
protected ClientDetailsLogger(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:OAuth2AuthorizationServerConfiguration.java   
protected BaseClientDetailsConfiguration(OAuth2ClientProperties client) {
    this.client = client;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:ResourceServerTokenServicesConfigurationTests.java   
public ResourceServerPropertiesConfiguration(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:spring-boot-concourse    文件:OAuth2AuthorizationServerConfiguration.java   
protected ClientDetailsLogger(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:spring-boot-concourse    文件:OAuth2AuthorizationServerConfiguration.java   
protected BaseClientDetailsConfiguration(OAuth2ClientProperties client) {
    this.client = client;
}
项目:spring-boot-concourse    文件:ResourceServerTokenServicesConfigurationTests.java   
public ResourceServerPropertiesConfiguration(OAuth2ClientProperties credentials) {
    this.credentials = credentials;
}
项目:jsonwebtoken    文件:JwtOAuth2AutoConfiguration.java   
public JwtOAuth2AutoConfiguration(ObjectProvider<Clock> clock, OAuth2ClientProperties credentials) {
    Clock injectedClock = clock.getIfAvailable();
    this.clock = injectedClock != null ? injectedClock : Clock.systemDefaultZone();
    this.credentials = credentials;
}