Examples of toFlowNodeEnd()


Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

    TaskCommandInst taskCommand = getTaskCommandInst();

    try {

      UserTaskBehavior backNodeUserTask = (UserTaskBehavior) getExecutionContext().getProcessDefinition().getDefinitions().getElement(rollBackNodeId);
      taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, null);

    } catch (Exception e) {

      throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
    }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

      try {

        UserTaskBehavior backNodeUserTask = (UserTaskBehavior) executionContext.getProcessDefinition().getDefinitions().getElement(rollBackNodeId);

        taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, null);

      } catch (Exception e) {

        throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
      }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

    } else {

      try {
        UserTaskBehavior backNodeUserTask = (UserTaskBehavior) executionContext.getProcessDefinition().getDefinitions().getElement(rollBackNodeId);

        taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, taskInstanceQueryRollBack.getAssignee());

      } catch (Exception e) {

        throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
      }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

   
    if (taskInstanceQueryRollBack.getTaskGroup() != null) {

      try {
        UserTaskBehavior backNodeUserTask = (UserTaskBehavior)getProcessInstance().getProcessDefinition().getDefinitions().getElement(rollBackNodeId);
        taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, null);

      } catch (Exception e) {

        throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
      }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

      try {

        UserTaskBehavior backNodeUserTask = (UserTaskBehavior) getProcessInstance().getProcessDefinition().getDefinitions().getElement(rollBackNodeId);

        taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, taskInstanceQueryRollBack.getAssignee());

      } catch (Exception e) {

        throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
      }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

        try {

       
         
          UserTaskBehavior backNodeUserTask = (UserTaskBehavior) getExecutionContext().getProcessDefinition().getDefinitions().getElement(rollBackNodeId);
          taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, null);

         
         

        } catch (Exception e) {
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.task.TaskInstanceEntity.toFlowNodeEnd()

       
        try {

          UserTaskBehavior backNodeUserTask = (UserTaskBehavior) getExecutionContext().getProcessDefinition().getDefinitions().getElement(rollBackNodeId);
          taskInstance.toFlowNodeEnd(taskCommand, taskComment, backNodeUserTask, taskInstanceQueryTos.get(0).getAssignee());


        } catch (Exception e) {

          throw new FixFlowException("任务: " + taskId + " 退回失败!", e);
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.