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.openmhealth.dsu.domain.EndUserUserDetails.java

/**
 * A user's authentication details.
 *
 * @author Emerson Farrugia
 */
public class EndUserUserDetails extends User {

From source file com.kazuki43zoo.jpetstore.service.AccountUserDetails.java

/**
 * @author Kazuki Shimizu
 */
@Getter
public class AccountUserDetails extends User {

From source file io.gravitee.management.idp.api.authentication.UserDetails.java

/**
 * @author Azize Elamrani (azize at gravitee.io)
 * @author GraviteeSource Team
 */
public class UserDetails extends User {

From source file uk.co.caprica.bootlace.security.domain.UserWithId.java

/**
 * Extension of the standard Spring Security {@link User} to hold the database user identifier.
 * <p>
 * Instances of this class are <em>not</em> expected to be serialised to the client via a
 * web-service, rather this class is intended to be used on the server-side only to implement
 * application logic depending on the currently authenticated user (e.g. in web-service

From source file com.example.securelogin.domain.service.userdetails.LoggedInUser.java

public class LoggedInUser extends User {
    private static final long serialVersionUID = 1L;

    private final Account account;

    private final LocalDateTime lastLoginDate;

From source file org.sharetask.security.UserDetailsImpl.java

/**
 * @author Michal Bocek
 * @since 1.0.0
 */
public class UserDetailsImpl extends org.springframework.security.core.userdetails.User {

From source file it.f2informatica.webapp.security.UserDetails.java

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

    public UserDetails(AuthenticationModel userLogged, Collection<GrantedAuthority> authorities) {
        super(userLogged.getUsername(), userLogged.getPassword(), authorities);
    }

From source file edu.umn.auth.MockUserDetails.java

/**
 * User details for use by the Mock security plugin
 * This adds support for fullname, email to the {@link User} class.
 * 
 * @author <a href="mailto:ajz@umn.edu">Aaron J. Zirbes</a>
 */

From source file od.OpenDashboardUser.java

/**
 * @author ggilbert
 *
 */
public class OpenDashboardUser extends User {

From source file ru.mystamps.web.support.spring.security.CustomUserDetails.java

@Getter
public class CustomUserDetails extends org.springframework.security.core.userdetails.User {

    private final Integer userId;

    // used in controllers for getting info about current user