Files
HRMS/hrmsEjb/wenrgise/workflow/utility/Node.java
2025-07-28 13:56:49 +05:30

38 lines
659 B
Java

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;
}
}