Examples of taskParticipants()


Examples of com.founder.fix.fixflow.core.runtime.ProcessInstanceQuery.taskParticipants()

     
      if(StringUtil.isNotEmpty(processType)){
        if(processType.equals("initor"))
          processInstanceQuery.initiator(userId);
        else
          processInstanceQuery.taskParticipants(userId);
      }
     
      String processDefinitionName     = StringUtil.getString(filter.get("processDefinitionName"));
      if(StringUtil.isNotEmpty(processDefinitionName))
        processInstanceQuery.processDefinitionNameLike(processDefinitionName);
View Full Code Here

Examples of com.founder.fix.fixflow.core.runtime.ProcessInstanceQuery.taskParticipants()

      List<ProcessInstance> instances = null;
      if(StringUtil.isNotEmpty(processType)){
        if(processType.equals("initor"))
          tq.initiator(userId);
        else
          tq.taskParticipants(userId);
      }
      tq.his();
      instances = tq.listPagination(pageIndex, rowNum);

      Long count = tq.count();
View Full Code Here

Examples of com.founder.fix.fixflow.core.runtime.ProcessInstanceQuery.taskParticipants()

    /*********8.流程结束,查询流程追踪。***********************/
   
    //重置任务实例查询
    processInstanceQuery = runtimeService.createProcessInstanceQuery();
    //查询1200119390参与的流程(流程追踪)
    List<ProcessInstance> processInstances = processInstanceQuery.taskParticipants("1200119390").processDefinitionKey("TaskServiceNewTest").list();
    //验证是否查询正确
    assertNotNull(processInstances);
   
  }
}
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.