Package org.camunda.bpm.engine.impl.cmmn.cmd

Source Code of org.camunda.bpm.engine.impl.cmmn.cmd.StateTransitionCaseExecutionCmd

/* 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.
*/
package org.camunda.bpm.engine.impl.cmmn.cmd;

import java.util.Collection;
import java.util.Map;

import org.camunda.bpm.engine.impl.cmmn.CaseExecutionCommandBuilderImpl;
import org.camunda.bpm.engine.impl.cmmn.entity.runtime.CaseExecutionEntity;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;

/**
* @author Roman Smirnov
*
*/
public abstract class StateTransitionCaseExecutionCmd extends CaseExecutionVariableCmd {

  private static final long serialVersionUID = 1L;

  public StateTransitionCaseExecutionCmd(String caseExecutionId, Map<String, Object> variables, Map<String, Object> variablesLocal,
        Collection<String> variableDeletions, Collection<String> variableLocalDeletions) {
    super(caseExecutionId, variables, variablesLocal, variableDeletions, variableLocalDeletions);
  }

  public StateTransitionCaseExecutionCmd(CaseExecutionCommandBuilderImpl builder) {
    super(builder);
  }

  public Void execute(CommandContext commandContext) {
    super.execute(commandContext);

    CaseExecutionEntity caseExecution = getCaseExecution();

    performStateTransition(commandContext, caseExecution);

    return null;
  }

  protected abstract void performStateTransition(CommandContext commandContext, CaseExecutionEntity caseExecution);





}
TOP

Related Classes of org.camunda.bpm.engine.impl.cmmn.cmd.StateTransitionCaseExecutionCmd

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.