
org.camunda.bpm.engine.impl.cmd.RemoveExecutionVariablesCmd Maven / Gradle / Ivy
package org.camunda.bpm.engine.impl.cmd;
import java.io.Serializable;
import java.util.Collection;
import org.camunda.bpm.engine.impl.interceptor.Command;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;
import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity;
import static org.camunda.bpm.engine.impl.util.EnsureUtil.ensureNotNull;
/**
* @author roman.smirnov
* @author Joram Barrez
*/
public class RemoveExecutionVariablesCmd implements Command, Serializable {
private static final long serialVersionUID = 1L;
private String executionId;
private Collection variableNames;
private boolean isLocal;
public RemoveExecutionVariablesCmd(String executionId, Collection variableNames, boolean isLocal) {
this.executionId = executionId;
this.variableNames = variableNames;
this.isLocal = isLocal;
}
@Override
public Void execute(CommandContext commandContext) {
ensureNotNull("executionId", executionId);
ExecutionEntity execution = commandContext
.getExecutionManager()
.findExecutionById(executionId);
ensureNotNull("execution " + executionId + " doesn't exist", "execution", execution);
if (isLocal) {
execution.removeVariablesLocal(variableNames);
} else {
execution.removeVariables(variableNames);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy