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 org.softdays.mandy.web.security.MyUser.java

/**
 * The Class MyUser.
 * 
 * @author rpatriarche
 * @since 1.0.0
 */

From source file com.poi.domain.EnhancedUser.java

/**
 * The enhanced user.
 */
@SuppressWarnings("serial")
public class EnhancedUser extends User {

From source file com.jappstart.service.auth.EnhancedUser.java

/**
 * The enhanced user.
 */
@SuppressWarnings("serial")
public class EnhancedUser extends User {

From source file com.assetmanager.service.auth.EnhancedUser.java

/**
 * The enhanced user.
 */
@SuppressWarnings("serial")
public class EnhancedUser extends User {

From source file puma.application.webapp.users.CustomUserDetails.java

public class CustomUserDetails extends User {

    public CustomUserDetails(String username, String password) {
        super(username, password, true, true, true, true, new LinkedList<GrantedAuthority>());
    }

From source file org.opens.tgol.security.userdetails.TgolUserDetails.java

/**
 *
 * @author jkowalczyk
 */
public class TgolUserDetails extends org.springframework.security.core.userdetails.User {

From source file org.tanaguru.webapp.security.userdetails.TgolUserDetails.java

/**
 *
 * @author jkowalczyk
 */
public class TgolUserDetails extends org.springframework.security.core.userdetails.User {

From source file org.asqatasun.webapp.security.userdetails.TgolUserDetails.java

/**
 *
 * @author jkowalczyk
 */
public class TgolUserDetails extends org.springframework.security.core.userdetails.User {

From source file org.netxilia.api.impl.user.SpringUserAdapter.java

public class SpringUserAdapter extends User {

    private static final long serialVersionUID = 1L;
    private final org.netxilia.api.user.User netxiliaUser;

    public SpringUserAdapter(org.netxilia.api.user.User netxiliaUser, boolean enabled, boolean accountNonExpired,

From source file id.ac.idu.policy.model.UserImpl.java

/**
 * The user implementation of spring-security framework user class. <br>
 * Extends for our simulation of a one-time-password .<br>
 * <br>
 * Extended for usrToken, our simulation of a one-time-password .<br>
 * Extended for a usrId, userID (type long). <br>