Example usage for org.springframework.boot.autoconfigure.security.oauth2.resource ResourceServerProperties ResourceServerProperties

List of usage examples for org.springframework.boot.autoconfigure.security.oauth2.resource ResourceServerProperties ResourceServerProperties

Introduction

In this page you can find the example usage for org.springframework.boot.autoconfigure.security.oauth2.resource ResourceServerProperties ResourceServerProperties.

Prototype

public ResourceServerProperties() 

Source Link

Usage

From source file:com.emusic.SecurityConfig.java

@Bean
@ConfigurationProperties("facebook.resource")
ResourceServerProperties facebookResource() {
    return new ResourceServerProperties();
}

From source file:com.emusic.SecurityConfig.java

@Bean
@ConfigurationProperties("github.resource")
ResourceServerProperties githubResource() {
    return new ResourceServerProperties();
}