Example usage for org.springframework.security.web.authentication.preauth PreAuthenticatedAuthenticationToken subclass-usage

List of usage examples for org.springframework.security.web.authentication.preauth PreAuthenticatedAuthenticationToken subclass-usage

Introduction

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

Usage

From source file authentication.PreAuthenticatedAuthentication.java

/**
 * A classe <code>PreAuthenticatedAuthentication</code> representa um usurio
 * preautenticado na aplicao. Ela difere da classe
 * <code>PreAuthenticatedAuthenticationToken</code> provida pelo Spring no fato
 * de que ela no precisa de senha nos mtodos construtores.
 *

From source file com.devicehive.auth.HiveAuthentication.java

public class HiveAuthentication extends PreAuthenticatedAuthenticationToken {
    private HivePrincipal hivePrincipal;

    public HiveAuthentication(Object aPrincipal, Collection<? extends GrantedAuthority> anAuthorities) {
        super(aPrincipal, null, anAuthorities);
    }

From source file eu.trentorise.smartcampus.resourceprovider.filter.ResourceCallAuthenticationToken.java

/**
 * Extension of the {@link PreAuthenticatedAuthenticationToken} to carry also the 
 * request path and http method necessary to identify the validiated resource. 
 * @author raman
 *
 */

From source file eu.freme.common.security.AuthenticationWithToken.java

/**
 * @author Jan Nehring - jan.nehring@dfki.de
 */
@SuppressWarnings("serial")
public class AuthenticationWithToken extends PreAuthenticatedAuthenticationToken {

From source file eu.freme.broker.security.AuthenticationWithToken.java

/**
 * @author Jan Nehring - jan.nehring@dfki.de
 */
@SuppressWarnings("serial")
public class AuthenticationWithToken extends PreAuthenticatedAuthenticationToken {