Example usage for org.springframework.security.oauth2.provider.error OAuth2AuthenticationEntryPoint setTypeName

List of usage examples for org.springframework.security.oauth2.provider.error OAuth2AuthenticationEntryPoint setTypeName

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.error OAuth2AuthenticationEntryPoint setTypeName.

Prototype

public void setTypeName(String typeName) 

Source Link

Usage

From source file:org.meruvian.yama.webapi.config.oauth.OAuthServerConfig.java

@Bean
public AuthenticationEntryPoint oauth2AuthenticationEntryPoint() {
    OAuth2AuthenticationEntryPoint e = new OAuth2AuthenticationEntryPoint();
    e.setRealmName("yama/client");
    e.setTypeName("Basic");

    return e;//from   w w  w. j  a va 2s.c  o m
}