package com.vci.server.workflow.objects;
|
|
public class PLFlowObject implements java.io.Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
// Fields
|
|
private String ploid;
|
private String plexecutionid;
|
private String plprocesstype;
|
private String plobjectid;
|
private String initStatus = "";
|
|
// Constructors
|
|
/** default constructor */
|
public PLFlowObject() {
|
}
|
|
/** minimal constructor */
|
public PLFlowObject(String ploid) {
|
this.ploid = ploid;
|
}
|
|
/** full constructor */
|
public PLFlowObject(String ploid, String plexecutionid, String plprocesstype, String plobjectid) {
|
this.ploid = ploid;
|
this.plexecutionid = plexecutionid;
|
this.plprocesstype = plprocesstype;
|
this.plobjectid = plobjectid;
|
}
|
|
// Property accessors
|
|
public String getPloid() {
|
return this.ploid;
|
}
|
|
public void setPloid(String ploid) {
|
this.ploid = ploid;
|
}
|
|
public String getPlexecutionid() {
|
return this.plexecutionid;
|
}
|
|
public void setPlexecutionid(String plexecutionid) {
|
this.plexecutionid = plexecutionid;
|
}
|
|
public String getPlprocesstype() {
|
return this.plprocesstype;
|
}
|
|
public void setPlprocesstype(String plprocesstype) {
|
this.plprocesstype = plprocesstype;
|
}
|
|
public String getPlobjectid() {
|
return this.plobjectid;
|
}
|
|
public void setPlobjectid(String plobjectid) {
|
this.plobjectid = plobjectid;
|
}
|
|
public String getInitStatus() {
|
return initStatus;
|
}
|
|
public void setInitStatus(String initStatus) {
|
this.initStatus = initStatus;
|
}
|
|
}
|