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

com.eurodyn.qlack.fuse.audit.dto.AuditTraceDTO Maven / Gradle / Ivy

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

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * The Audit Trace DTO, that holds the trace of an Audit.
 *
 * @author European Dynamics SA.
 */
@Getter
@Setter
@NoArgsConstructor
public class AuditTraceDTO extends AuditBaseDTO {

  /**
   * the data of the trace
   */
  private String traceData;

  /**
   * Copy constructor
   *
   * @param traceData the data of the Audit trace
   */
  public AuditTraceDTO(String traceData) {
    setTraceData(traceData);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy