Package com.founder.fix.fixflow.expand.cmd

Source Code of com.founder.fix.fixflow.expand.cmd.SuspendTaskCmd

/**
* Copyright 1996-2013 Founder International Co.,Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author kenshin
*/
package com.founder.fix.fixflow.expand.cmd;

import com.founder.fix.fixflow.core.exception.FixFlowException;
import com.founder.fix.fixflow.core.impl.cmd.AbstractExpandTaskCmd;
import com.founder.fix.fixflow.core.impl.interceptor.CommandContext;
import com.founder.fix.fixflow.core.impl.runtime.TokenEntity;
import com.founder.fix.fixflow.expand.command.SuspendTaskCommand;

/**
* @author kenshin
*/
public class SuspendTaskCmd extends AbstractExpandTaskCmd<SuspendTaskCommand, Void> {

  public SuspendTaskCmd(SuspendTaskCommand suspendTaskCommand) {
    super(suspendTaskCommand);

  }

  public Void execute(CommandContext commandContext) {
    // 初始化任务命令执行所需要的常用对象
    loadProcessParameter(commandContext);

    // 将外部变量注册到流程实例运行环境中
    addVariable();

    // 执行处理命令中的开发人员设置的表达式
    runCommandExpression();

    // 获取当前操作任务的令牌
    TokenEntity token = getTaskInstanceEntity().getToken();
    // 恢复令牌
    token.suspend();

    try {
      // 保存流程实例
      saveProcessInstance(commandContext);

    } catch (Exception e) {

      e.printStackTrace();
      throw new FixFlowException("暂停任务时出现错误!", e);

    }
    return null;
  }

}
TOP

Related Classes of com.founder.fix.fixflow.expand.cmd.SuspendTaskCmd

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.