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 com.katropine.oauth.CustomUserPasswordAuthenticationToken.java

public class CustomUserPasswordAuthenticationToken extends AbstractAuthenticationToken {

    private static final long serialVersionUID = 310L;
    private final Object principal;
    private Object credentials;
    private int loginId;

From source file at.plechinger.spring.security.scribe.ScribeAuthentication.java

/**
 * The implementation of
 * <code>AuthenticationToken</code> for ScribeAuthentication.
 *
 * @author Lukas Plechinger, www.plechinger.at
 */

From source file org.appverse.web.framework.backend.frontfacade.rest.authentication.model.JWSAuthenticationToken.java

public class JWSAuthenticationToken extends AbstractAuthenticationToken {

    private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;

    //~ Instance fields ================================================================================================

From source file com.cosw.productsmaster.authsec.UserAuthenticationProvider.java

class UserAuthenticationToken extends AbstractAuthenticationToken {

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

From source file org.apache.cxf.fediz.service.idp.kerberos.KerberosServiceRequestToken.java

/**
 * Holds the Kerberos/SPNEGO token for requesting a kerberized service
 * and is also the output of <code>KerberosServiceAuthenticationProvider</code>.<br>
 * Will mostly be created in <code>SpnegoAuthenticationProcessingFilter</code>
 * and authenticated in <code>KerberosServiceAuthenticationProvider</code>.
 *

From source file info.raack.appliancelabeler.security.OAuthAutomaticAuthenticationToken.java

public class OAuthAutomaticAuthenticationToken extends AbstractAuthenticationToken {

    private Object principal;

    public OAuthAutomaticAuthenticationToken(Object principal) {