public void setVariableLocal(String executionId, String variableName, Object value) {
ensureNotNull("variableName", variableName);
Map<String, Object> variables = new HashMap<String, Object>();
variables.put(variableName, value);
commandExecutor.execute(new SetTaskVariablesCmd(executionId, variables, true));
}