first commit
This commit is contained in:
21
hrmsEjb/wenrgise/workflow/core/WflStatus.java
Normal file
21
hrmsEjb/wenrgise/workflow/core/WflStatus.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package wenrgise.workflow.core;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface WflStatus extends Serializable {
|
||||
String getStatus();
|
||||
|
||||
void setStatus(String paramString);
|
||||
|
||||
WflResource assignedTo();
|
||||
|
||||
void assign(WflResource paramWflResource);
|
||||
|
||||
String getErrCode();
|
||||
|
||||
void setErrCode(String paramString);
|
||||
|
||||
String getErrMsg();
|
||||
|
||||
void setErrMsg(String paramString);
|
||||
}
|
Reference in New Issue
Block a user