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

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


    for (TaskInstanceEntity taskInstance : taskInstances) {
      if (taskInstance.getId().equals(taskId)) {

        TaskInstanceEntity taskInstanceImpl = taskInstance;
        taskInstanceImpl.end();
        if (taskCommand != null) {
          taskInstanceImpl.setCommandId(taskCommand.getId());
          taskInstanceImpl.setCommandType(StringUtil
              .getString(taskCommand.getTaskCommandType()));
View Full Code Here


     
      if(taskInstanceImpl!=null){
       
        taskInstanceImpl.setAssignee(Authentication.getAuthenticatedUserId());
       
        taskInstanceImpl.end();
        taskInstanceImpl.setDueDate(new Date());
        taskInstanceImpl.setDraft(false);
        taskInstanceImpl.setCommandId(commandId);
        taskInstanceImpl.setCommandType(StringUtil.getString(taskCommandInst.getTaskCommandType()));
        taskInstanceImpl.setCommandMessage(taskCommandInst.getName());
View Full Code Here

   

    if(taskInstance!=null){
     
      //结束任务,并推动token运行
      taskInstance.end(taskCommand, this.taskComment);

    }
    else{
      throw new FixFlowException("没有找到id为: "+taskId+" 的任务");
    }
View Full Code Here

     
      if(taskInstanceImpl!=null){
       
        taskInstanceImpl.setAssignee(Authentication.getAuthenticatedUserId());
       
        taskInstanceImpl.end();
        taskInstanceImpl.setDueDate(new Date());
        taskInstanceImpl.setDraft(false);
        taskInstanceImpl.setCommandId(commandId);
        taskInstanceImpl.setCommandType(StringUtil.getString(taskCommandInst.getTaskCommandType()));
        taskInstanceImpl.setCommandMessage(taskCommandInst.getName());
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.