Example usage for org.springframework.security.oauth.provider OAuthAuthenticationHandler interface-usage

List of usage examples for org.springframework.security.oauth.provider OAuthAuthenticationHandler interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth.provider OAuthAuthenticationHandler interface-usage.

Usage

From source file ro.bmocanu.test.spring.security.oauth.ConsumerBasedAuthenticationHandler.java

/**
 * @author mocanu
 */
public class ConsumerBasedAuthenticationHandler implements OAuthAuthenticationHandler {

    @Override

From source file ltistarter.lti.LTIOAuthAuthenticationHandler.java

@Component
public class LTIOAuthAuthenticationHandler implements OAuthAuthenticationHandler {

    final static Logger log = LoggerFactory.getLogger(LTIOAuthAuthenticationHandler.class);

    public static SimpleGrantedAuthority userGA = new SimpleGrantedAuthority("ROLE_USER");

From source file ltistarter.oauth.MyOAuthAuthenticationHandler.java

@Component
public class MyOAuthAuthenticationHandler implements OAuthAuthenticationHandler {

    final static Logger log = LoggerFactory.getLogger(MyOAuthAuthenticationHandler.class);

    public static SimpleGrantedAuthority userGA = new SimpleGrantedAuthority("ROLE_USER");

From source file org.opencastproject.kernel.security.LtiLaunchAuthenticationHandler.java

/**
 * Callback interface for handing authentication details that are used when an authenticated request for a protected
 * resource is received.
 */
public class LtiLaunchAuthenticationHandler
        implements org.springframework.security.oauth.provider.OAuthAuthenticationHandler {