Package com.starflow.wf.engine.core.participant

Examples of com.starflow.wf.engine.core.participant.ParticipantProcessEngineException


    String activityDefId = activityXml.getParticiSpecActID();
   
    List<Participant> list = workItemService.queryActivityExecutors(processInstId, activityDefId);
   
    if(list == null || list.isEmpty()) {
      throw new ParticipantProcessEngineException("指定执行环节【" + activityDefId + "】必须已经执行完成");
    }
   
    return list;
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.participant.ParticipantProcessEngineException

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.