Package com.founder.fix.fixflow.core.impl.cmd

Examples of com.founder.fix.fixflow.core.impl.cmd.GetPreviousStepTaskByTaskIdCmd


    TaskCommandInst taskCommand = getTaskCommandInst();
   
   
   
    // TODO Auto-generated method stub
    List<TaskInstance> taskInstanceQueryTos = (new GetPreviousStepTaskByTaskIdCmd(this.taskId)).execute(commandContext);

    if (taskInstanceQueryTos.size() == 0) {
      throw new FixFlowException("没有可以退回的任务");
    }
View Full Code Here


  public List<Map<String, Object>> getTaskStatusByByProcessInstanceId(List<String> processInstanceIdList) {
    return commandExecutor.execute(new GetTaskStatusByByProcessInstanceIdCmd(processInstanceIdList));
  }

  public List<TaskInstance> getPreviousStepTaskByTaskId(String taskId) {
    return commandExecutor.execute(new GetPreviousStepTaskByTaskIdCmd(taskId));
  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.impl.cmd.GetPreviousStepTaskByTaskIdCmd

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.