Example usage for org.springframework.security.authentication AbstractAuthenticationToken subclass-usage

List of usage examples for org.springframework.security.authentication AbstractAuthenticationToken subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication AbstractAuthenticationToken subclass-usage.

Usage

From source file edu.eci.test.AAAUserAuthenticationToken.java

public class AAAUserAuthenticationToken extends AbstractAuthenticationToken {

    private static final long serialVersionUID = -1092219614309982278L;
    private final Object principal;
    private Object credentials;

From source file st.malike.auth.server.config.ClientAuthenticationToken.java

/**
 *
 * @author malike_st
 */
public class ClientAuthenticationToken extends AbstractAuthenticationToken {

From source file com.tlantic.integration.authentication.config.ClientAuthenticationToken.java

public class ClientAuthenticationToken extends AbstractAuthenticationToken {

    private final Object principal;
    private final Object credentials;
    private final boolean client;

From source file business.security.UserAuthenticationToken.java

@SuppressWarnings("serial")
public class UserAuthenticationToken extends AbstractAuthenticationToken {

    private User user;

    public UserAuthenticationToken(Collection<? extends GrantedAuthority> authorities) {

From source file com.hp.autonomy.hod.sso.HodTokenAuthentication.java

/**
 * An Authentication representing an unverified HP Haven OnDemand combined token.
 *
 * This authentication is never authenticated.
 */
public class HodTokenAuthentication extends AbstractAuthenticationToken {

From source file cz.cvut.kbss.wpa.security.CurrentUserDetails.java

/**
 *
 * @author zdenk
 */
public class CurrentUserDetails extends AbstractAuthenticationToken implements UserDetails, Serializable {

From source file com.hp.autonomy.hod.sso.HodAuthentication.java

/**
 * Spring Security Authentication which combines an HP Haven OnDemand {@link TokenProxy} with a username and application
 * details. This Authentication is authenticated at creation time.
 * For access control decisions, the GrantedAuthorities should be checked for the correct
 * {@link HodApplicationGrantedAuthority}.
 * @param <E> Entity type of token proxies contained in the authentication.

From source file shiver.me.timbers.spring.security.JwtAuthentication.java

/**
 * @author Karl Bennett
 */
public class JwtAuthentication extends AbstractAuthenticationToken {

    private final String principal;

From source file org.cloudfoundry.identity.uaa.oauth.RemoteUserAuthentication.java

/**
 * Authentication token representing a user decoded from a UAA access token.
 * 
 * @author Dave Syer
 *
 */

From source file com.jiwhiz.TestAuthenticationToken.java

/**
 * @author Yuan Ji
 *
 */
@SuppressWarnings("serial")
public class TestAuthenticationToken extends AbstractAuthenticationToken {