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

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

The newest version!
package com.eurodyn.qlack.fuse.aaa.dto;

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

/**
 * This is transfer object for AaaSession entity.
 *
 * @author European Dynamics SA
 */
@Getter
@Setter
public class SessionDTO extends BaseDTO {

  /**
   * the userId
   */
  private String userId;
  /**
   * the date that is created on the session
   */
  private long createdOn;
  /**
   * the terminated on
   */
  private Long terminatedOn;
  /**
   * the application session Id
   */
  private String applicationSessionId;
  /**
   * a set of attributes
   */
  private Set sessionAttributes;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy