Package com.starflow.wf.engine.service

Examples of com.starflow.wf.engine.service.IWorkItemService


*/
public class ActExecuterParticipantMode implements ParticipantMode {

  public List<Participant> creatParticipants(AbstractFlowEvent event,
      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

Related Classes of com.starflow.wf.engine.service.IWorkItemService

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.