package wenrgise.workflow.utility; import java.io.Serializable; public class Node implements Serializable { private String lane; private String level; public Node(String lane, String level) { this.lane = lane; this.level = level; } public Node(Node oNodeInfo) { this.lane = oNodeInfo.getLane(); this.level = oNodeInfo.getLevel(); } public Node() {} public String getLane() { return this.lane; } public void setLane(String newLane) { this.lane = newLane; } public String getLevel() { return this.level; } public void setLevel(String newLevel) { this.level = newLevel; } }