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

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

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

import lombok.Getter;
import lombok.Setter;

import java.util.Set;

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

  private String userId;
  private long createdOn;
  private Long terminatedOn;
  private String applicationSessionId;
  private Set sessionAttributes;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy