Package com.starflow.wf.engine.core.workitem

Examples of com.starflow.wf.engine.core.workitem.WorkItemMode


    //执行环节开始时间
    executeBefore(event.getApplicationContext(), events, procInst.getParentProcInstId());
   
    //获取工作项模式
    String mode = activityXml.getWiMode();
    WorkItemMode wiMode = WorkItemModeFactory.buildWorkItemMode(mode);
    workItems = wiMode.createWorkItem(event, activityXml);
   
    activityInst = new ActivityInst();
    activityInst.setActivityDefId(activityDefId);
    activityInst.setActivityType(Constants.ACT_TYPE_MANUL);
    activityInst.setActivityInstName(activityXml.getName());
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.workitem.WorkItemMode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.