You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
707 B
42 lines
707 B
package com.platform.entities;
|
|
|
|
import java.util.List;
|
|
|
|
public class FolderNode {
|
|
private String name;
|
|
private String path;
|
|
private List<FolderNode> childNodes;
|
|
|
|
public FolderNode(String name, String path, List<FolderNode> childNodes) {
|
|
super();
|
|
this.name = name;
|
|
this.path = path;
|
|
this.childNodes = childNodes;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
|
|
public List<FolderNode> getChildNodes() {
|
|
return childNodes;
|
|
}
|
|
|
|
public void setChildNodes(List<FolderNode> childNodes) {
|
|
this.childNodes = childNodes;
|
|
}
|
|
|
|
}
|