Example usage for org.springframework.security.core CredentialsContainer interface-usage

List of usage examples for org.springframework.security.core CredentialsContainer interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.core CredentialsContainer interface-usage.

Usage

From source file org.homiefund.api.dto.UserDTO.java

/**
 * Created by Dominik Szalai - emptulik at gmail.com on 21.9.2016.
 */
@Data
@EqualsAndHashCode(of = "id")
@ToString(exclude = { "password", "authorities" })

From source file br.com.joaops.smt.security.SmtUserDetails.java

/**
 *
 * @author Joo
 */
public class SmtUserDetails implements UserDetails, CredentialsContainer, Serializable {

From source file com.yqboots.security.core.User.java

/**
 * User entity.
 *
 * @author Eric H B Zhan
 * @since 1.1.0
 */

From source file com.rockagen.gnext.service.spring.security.extension.BasicSecurityUser.java

/**
 * An extension for spring security {@link UserDetails}
 * 
 * @author RA
 * @see org.springframework.security.core.userdetails.User
 */

From source file cz.muni.fi.editor.api.dto.UserDTO.java

/**
 * @author Dominik Szalai - emptulik at gmail.com
 */
@Data
@EqualsAndHashCode(of = "id")
@ToString(exclude = "password")

From source file com.kunckle.jetpower.core.user.entity.User.java

/**
 * 
 */
@MappedSuperclass
public class User extends BaseEntity<Integer> implements UserDetails, CredentialsContainer {

From source file es.ucm.fdi.dalgs.domain.User.java

@Entity
@JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class, property = "@id")
@Table(name = "user")
public class User implements UserDetails, CredentialsContainer, Serializable {

    private static final long serialVersionUID = 1L;

From source file org.springframework.security.core.userdetails.User.java

/**
 * Models core user information retrieved by a {@link UserDetailsService}.
 * <p>
 * Developers may use this class directly, subclass it, or write their own
 * {@link UserDetails} implementation from scratch.
 * <p>