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

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

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

import java.io.Serializable;
import lombok.Getter;
import lombok.Setter;

/**
 * A simple DTO for OperationAccess .It is used to store and retrieve the data
 * of Operation Access object.
 *
 * @author European Dynamics SA
 */
@Getter
@Setter
public class OperationAccessDTO implements Serializable {

  /**
   * the operation
   */
  private OperationDTO operation;
  /**
   * the resource
   */
  private ResourceDTO resource;
  /**
   * a deny status of operation
   */
  private boolean deny;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy