Examples of queryActivityExecutors()


Examples of com.starflow.wf.engine.service.IWorkItemService.queryActivityExecutors()

      ActivityElement activityXml) {
    IWorkItemService workItemService = event.getProcessEngine().getWorkItemService();
    long processInstId = event.getProcessInstance().getProcessInstId();
    String activityDefId = activityXml.getParticiSpecActID();
   
    List<Participant> list = workItemService.queryActivityExecutors(processInstId, activityDefId);
   
    if(list == null || list.isEmpty()) {
      throw new ParticipantProcessEngineException("指定执行环节【" + activityDefId + "】必须已经执行完成");
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.