Example usage for org.springframework.security.oauth2.common AuthenticationScheme none

List of usage examples for org.springframework.security.oauth2.common AuthenticationScheme none

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.common AuthenticationScheme none.

Prototype

AuthenticationScheme none

To view the source code for org.springframework.security.oauth2.common AuthenticationScheme none.

Click Source Link

Document

Do not send at all.

Usage

From source file:org.openmhealth.shim.ihealth.IHealthShim.java

@Override
public OAuth2ProtectedResourceDetails getResource() {
    AuthorizationCodeResourceDetails resource = (AuthorizationCodeResourceDetails) super.getResource();
    resource.setAuthenticationScheme(AuthenticationScheme.none);
    return resource;
}