first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.service;
|
||||
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.workflow.bean.WflWorkListInfoBean;
|
||||
|
||||
public interface WorkFlowService {
|
||||
WflWorkListInfoBean getWorkListInfo(String paramString) throws EnrgiseApplicationException, EnrgiseSystemException;
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.service;
|
||||
|
||||
import wenrgise.hrms.helper.WorkFlowSimulator;
|
||||
import wenrgise.workflow.service.WorkFlowService;
|
||||
|
||||
public class WorkFlowServiceFactory {
|
||||
private static wenrgise.workflow.service.WorkFlowServiceFactory workFlowServiceFactory = new wenrgise.workflow.service.WorkFlowServiceFactory();
|
||||
|
||||
public static WorkFlowService getService() {
|
||||
return (WorkFlowService)new WorkFlowSimulator();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user