Example usage for org.springframework.security.oauth2.config.annotation.web.configurers AuthorizationServerSecurityConfigurer realm

List of usage examples for org.springframework.security.oauth2.config.annotation.web.configurers AuthorizationServerSecurityConfigurer realm

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.config.annotation.web.configurers AuthorizationServerSecurityConfigurer realm.

Prototype

String realm

To view the source code for org.springframework.security.oauth2.config.annotation.web.configurers AuthorizationServerSecurityConfigurer realm.

Click Source Link

Usage

From source file:com.companyname.PlatOauth2AuthServerConfig.java

@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
    logger.info("inside AuthorizationServerConfiguration.configure(...)");
    oauthServer.realm("myApp/client");
}