Package com.starflow.wf.engine.service

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


    if(!StringUtils.hasText(userId))
      throw new IllegalArgumentException("创建流程时,必须指定用户 ID");
   
    final ProcessDefine processDefine = procDefRep.findPublishProcessDefine(processDefName);
    if(processDefine == null)
      throw new ProcessDefineNotFoundException("没有创建流程,或者流程定义版本没有发布");
   
    //流程启动前触发事件
    TriggerProcessEventUtil.beforeStart(processEngine, processDefine, null,
        processDefine.getProcessObject().getEvents());
   
View Full Code Here

TOP

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

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.