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

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


    // 获取正在操作的任务命令对象实例
    TaskCommandInst taskCommand = getTaskCommandInst();
   

    List<TaskInstance> taskInstanceQueryTos = (new GetRollBackTaskCmd(this.taskId)).execute(commandContext);
   
    UserTask userTask=(UserTask)taskInstance.getToken().getFlowNode();
   

   
View Full Code Here


    taskInstanceCallAct.customEnd(taskCommand, this.taskComment);
    taskInstanceCallAct.setAssignee(Authentication.getAuthenticatedUserId());
    Context.getCommandContext().getTaskManager().saveTaskInstanceEntity((TaskInstanceEntity) taskInstanceCallAct);

   
    List<TaskInstance> taskInstanceQueryTos = (new GetRollBackTaskCmd(taskInstanceCallAct.getId())).execute(commandContext);
   
    TaskInstance taskInstanceQueryRollBack = null;

    for (TaskInstance taskInstanceQueryTo : taskInstanceQueryTos) {
      if (taskInstanceQueryTo.getNodeId().equals(rollBackNodeId)) {
View Full Code Here

  public List<CommentQueryTo> getProcessInstanceComments(String processInstanceId) {
    return commandExecutor.execute(new GetProcessInstanceCommentsCmd(processInstanceId));
  }

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

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

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

TOP

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

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.