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

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

package com.arextest.web.model.dto.filesystem;

import lombok.Data;

import java.util.List;
import java.util.Set;

@Data
public class FSNodeDto {
    private String nodeName;
    private Integer nodeType;
    private String infoId;
    private String method;  // available for nodeType equal 1
    /**
     * availbale for nodeType equal 2
     * @see com.arextest.web.model.enums.CaseSourceType
     */
    private int caseSourceType;
    private Set labelIds;
    private List children;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy