package ieven.server.webapp.domain.file; import java.util.List; public class GroupLogincalFile { String id; String groupName; List children; public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } public String getId() { return id; } public void setId(String id) { this.id = id; } }