first commit
This commit is contained in:
25
hrmsEjb/wenrgise/workflow/bean/WflAuthorizationBean.java
Normal file
25
hrmsEjb/wenrgise/workflow/bean/WflAuthorizationBean.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WflAuthorizationBean implements Serializable {
|
||||
private boolean authStatus;
|
||||
|
||||
private String errorCode;
|
||||
|
||||
public boolean isAuthStatus() {
|
||||
return this.authStatus;
|
||||
}
|
||||
|
||||
public void setAuthStatus(boolean newAuthStatus) {
|
||||
this.authStatus = newAuthStatus;
|
||||
}
|
||||
|
||||
public String getErrorCode() {
|
||||
return this.errorCode;
|
||||
}
|
||||
|
||||
public void setErrorCode(String newErrorCode) {
|
||||
this.errorCode = newErrorCode;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user