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

com.arextest.web.model.dto.filesystem.FSNodeDto Maven / Gradle / Ivy

The newest version!
package com.arextest.web.model.dto.filesystem;

import java.util.List;
import java.util.Set;
import lombok.Data;

@Data
public class FSNodeDto {

  private String nodeName;
  private Integer nodeType;
  private String infoId;
  private String method; // available for nodeType equal 1
  /**
   * available for nodeType equal 2
   *
   * @see com.arextest.web.model.enums.CaseSourceType
   */
  private int caseSourceType;
  private Set labelIds;
  private List children;
  private Boolean existChildren;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy