Example usage for org.springframework.security.core.userdetails User subclass-usage

List of usage examples for org.springframework.security.core.userdetails User subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.core.userdetails User subclass-usage.

Usage

From source file com.brienwheeler.web.spring.security.UserDetails.java

public class UserDetails extends org.springframework.security.core.userdetails.User {
    private static final long serialVersionUID = 1L;

    private final long userId;

    public UserDetails(User user, Collection<? extends GrantedAuthority> authorities) {

From source file com.telefonica.euro_iaas.paasmanager.model.dto.PaasManagerUser.java

/**
 * @author dbermejo
 */
public class PaasManagerUser extends User {

    /**

From source file com.klm.workshop.security.CustomUserDetails.java

/**
 * Custom user details (stores the user model)
 * 
 * @author Tijme Gommers <t.gommers@jetcat.nl>
 */
public class CustomUserDetails extends User {

From source file org.callistasoftware.netcare.commons.saml.Citizen.java

public class Citizen extends User implements UserDetails {

    /**
     * 
     */
    private static final long serialVersionUID = 1L;

From source file org.jasig.ssp.security.SspUser.java

/**
 * Design note on the <code>ThreadLocal</code> internal fields (SSP-854).
 * These are a hacks to deal with the fact that <code>SspUser</code> is used
 * both as a HTTP session-scoped object representing the session owner and as a
 * transient object acting as a wrapper around arbitrary <code>Person</code>
 * objects. When used in the latter mode, there might be several

From source file com.katropine.models.UserSession.java

public class UserSession extends User {

    private Date loginTime;
    private int rowsPerPage = 10;
    private String email;

From source file fi.helsinki.opintoni.security.AppUser.java

public final class AppUser extends User {

    public enum Role {
        TEACHER, STUDENT, ADMIN
    }

From source file com.lixiaocong.security.DaoBasedUserDetails.java

public class DaoBasedUserDetails extends User {
    private long id;

    DaoBasedUserDetails(long id, String username, String password,
            Collection<? extends GrantedAuthority> authorities) {
        super(username, password, authorities);