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

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

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

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

/**
 * A simple DTO that is used to retrieve and save data of OpTemplate object
 *
 * @author European Dynamics SA
 */
@Getter
@Setter
public class OpTemplateDTO extends BaseDTO {

  /**
   * the name
   */
  private String name;
  /**
   * a brief description of opTemplate
   */
  private String description;
  /**
   * the created by date
   */
  private String createdBy;
  /**
   * a set of operations
   */
  private Set operations;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy