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

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

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

import lombok.Getter;
import lombok.Setter;

/**
 * A simple DTO (Data Transfer Object) that is used to set and retrieve data of
 * Resource Object
 *
 * @author European Dynamics
 */
@Getter
@Setter
public class ResourceDTO extends BaseDTO {

  /**
   * the name
   */
  private String name;
  /**
   * the description
   */
  private String description;
  /**
   * the object Id
   */
  private String objectId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy