Example usage for org.springframework.security.oauth2.provider.token DefaultUserAuthenticationConverter subclass-usage

List of usage examples for org.springframework.security.oauth2.provider.token DefaultUserAuthenticationConverter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.token DefaultUserAuthenticationConverter subclass-usage.

Usage

From source file com.golonzovsky.oauth2.google.security.DefaultUserAuthenticationConverter.java

/**
 * Copied from the original implementation of the <code>DefaultUserAuthenticationConverter</code> to fix a bug in the
 * <code>getAuthorities</code> method. Rest all unchanged. Class with the original bug
 * <code>org.springframework.security.oauth2.provider.token.DefaultUserAuthenticationConverter</code>
 */
public class DefaultUserAuthenticationConverter

From source file com.rst.oauth2.google.security.DefaultUserAuthenticationConverter.java

/**
 * Copied from the original implementation of the <code>DefaultUserAuthenticationConverter</code> to fix a bug in the
 * <code>getAuthorities</code> method. Rest all unchanged. Class with the original bug
 * <code>org.springframework.security.oauth2.provider.token.DefaultUserAuthenticationConverter</code>
 *
 * @author Dave Syer

From source file org.trustedanalytics.servicecatalog.security.JwtUserDetailsTokenConverter.java

public class JwtUserDetailsTokenConverter extends DefaultUserAuthenticationConverter {

    public static final String USER_ID = "user_id";

    @Override
    public Authentication extractAuthentication(Map<String, ?> map) {

From source file org.meruvian.yama.webapi.config.oauth.UserTokenConverter.java

/**
 * @author Dian Aditya
 *
 */
public class UserTokenConverter extends DefaultUserAuthenticationConverter {
    protected static final String USER_ID = "user_id";

From source file org.trustedanalytics.user.invite.config.ScopeAuthoritiesTokenConverter.java

public class ScopeAuthoritiesTokenConverter extends DefaultUserAuthenticationConverter {

    public static final String USER_ID = "user_id";

    @Override
    public Authentication extractAuthentication(Map<String, ?> map) {

From source file com.netflix.genie.security.oauth2.pingfederate.PingFederateUserAuthenticationConverter.java

/**
 * Class to convert a map received from Ping Federate to a Spring Authentication object.
 *
 * @author tgianos
 * @since 3.0.0
 */

From source file com.netflix.genie.web.security.oauth2.pingfederate.PingFederateUserAuthenticationConverter.java

/**
 * Class to convert a map received from Ping Federate to a Spring Authentication object.
 *
 * @author tgianos
 * @since 3.0.0
 */

From source file com.ggk.hrms.authentication.DefaultUserAuthenticationConverter.java

/**
 * Copied from the original implementation of the
 * <code>DefaultUserAuthenticationConverter</code> to fix a bug in the
 * <code>getAuthorities</code> method. Rest all unchanged. Class with the
 * original bug
 * <code>org.springframework.security.oauth2.provider.token.DefaultUserAuthenticationConverter</code>

From source file com.emergya.spring.security.oauth.UserServiceAuthenticationConverter.java

/**
 * Copied from the original implementation of the <code>DefaultUserAuthenticationConverter</code> to fix a bug in the
 * <code>getAuthorities</code> method. Rest all unchanged. Class with the original bug
 * <code>org.springframework.security.oauth2.provider.token.DefaultUserAuthenticationConverter</code>
 */
@Component