All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eurodyn.qlack.fuse.aaa.dto.UserDTO Maven / Gradle / Ivy

There is a newer version: 3.8.9
Show newest version
package com.eurodyn.qlack.fuse.aaa.dto;

import java.util.Set;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class UserDTO extends BaseDTO {

  private String username;

  private String password;

  private byte status;

  private boolean superadmin;

  private boolean external;

  private Set userAttributes;

  // The session Id created for this user. Expect this to be populated, only, when attempting to
  // login the user.
  private String sessionId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy