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 BusinessLayer.model.CustomSecurityUser.java

/**
 *
 * @author MiChiamoG.A
 */
public class CustomSecurityUser extends org.springframework.security.core.userdetails.User {

From source file com.banco.security.CurrentUser.java

/**
 *
 * @author fedec
 */
public class CurrentUser extends org.springframework.security.core.userdetails.User {

From source file demo.domain.service.MyUserDetails.java

/**
 *
 * @author Kanekos
 */
public class MyUserDetails extends User {

From source file com.aerohive.core.security.core.userdetails.HiveEnhancedUserDetails.java

/**
 * The enhanced user details which support hive
 * <p>>I do not like place this class in hive-secuirty because i want hive-security to be a framework without any business code,
 * but till now there no suitable project to have this class, so it have to be placed here</p>
 * @author xczhang
 *

From source file br.com.icone.martan.security.UsuarioSistema.java

/**
 *
 * @author Gleywson
 */
public class UsuarioSistema extends User {

From source file br.com.gerenciapessoal.security.UsuarioSistema.java

/**
 *
 * @author jalima
 */
public class UsuarioSistema extends User {

From source file com.mycompany.projetsportmanager.springsecurity.userdetailsservice.AuthenticatedUserDTO.java

public class AuthenticatedUserDTO extends User {

    private static final long serialVersionUID = 1L;
    private UserProfilesAccessKey userProfilesAccessKey;

    public AuthenticatedUserDTO(String username, String password,

From source file dtu.ds.warnme.model.impl.CustomUser.java

/**
 * @author Bartosz Cichecki
 */
public class CustomUser extends User {

    private static final long serialVersionUID = -7462814601093909465L;

From source file model.SecurityUser.java

/**
 *
 * @author Mihai
 */
public class SecurityUser extends User implements UserDetails {

From source file com.example.AuthenticatedUser.java

public class AuthenticatedUser extends User {

    private final Set<String> authorities;
    private Long userId;

    AuthenticatedUser(final UserEntity userEntity) {