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.openeos.services.security.internal.InternalUser.java

public class InternalUser extends User {

    private static final long serialVersionUID = 1L;

    private String id;

From source file org.opendatakit.security.spring.OdkServerUser.java

/**
 * Extension of default User to add mailToDomain for help in 
 * constructing the eMail address of the user (which is the 
 * uriUser).
 * 
 * @author mitchellsundt@gmail.com

From source file org.bisen.chatamari.model.BlogUserDetails.java

/**
 *
 * @author asikprad
 */
public class BlogUserDetails extends User {

From source file grails.plugin.springsecurity.rest.GrailsUser.java

/**
 * Extends the default Spring Security user class to contain the ID for efficient lookup
 * of the domain class from the Authentication.
 *
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */

From source file com.example.security.domain.service.userdetails.SampleUserDetails.java

public class SampleUserDetails extends User { // (1)
    private static final long serialVersionUID = 1L;

    private final Account account; // (2)

    public SampleUserDetails(Account account) {

From source file grails.plugin.springsecurity.userdetails.GrailsUser.java

/**
 * Extends the default Spring Security user class to contain the ID for efficient lookup
 * of the domain class from the Authentication.
 *
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */

From source file org.cloudfoundry.identity.uaa.social.SocialClientUserDetails.java

/**
 * Customized {@code UserDetails} implementation.
 * 
 * @author Luke Taylor
 * @author Dave Syer
 */

From source file com.example.session.domain.service.userdetails.AccountDetails.java

public class AccountDetails extends User {

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

From source file org.pentaho.proxy.spring4.security.UserDetailsImpl.java

/**
 * Created by tkafalas on 8/24/15.
 */
public class UserDetailsImpl extends User implements UserDetails {

    private static final long serialVersionUID = 1L;

From source file org.codehaus.groovy.grails.plugins.springsecurity.GrailsUser.java

/**
 * Extends the default Spring Security user class to contain the ID for efficient lookup
 * of the domain class from the Authentication.
 *
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */