public VariableMap getVariablesLocalTyped(String executionId, Collection<String> variableNames, boolean deserializeValues) {
return commandExecutor.execute(new GetTaskVariablesCmd(executionId, variableNames, true, deserializeValues));
}
public Object getVariable(String executionId, String variableName) {
return commandExecutor.execute(new GetTaskVariableCmd(executionId, variableName, false));
}