public Map<String, Object> getVariables(String executionId, Collection<String> variableNames) {
return commandExecutor.execute(new GetExecutionVariablesCmd(executionId, variableNames, false));
}
public Map<String, Object> getVariablesLocal(String executionId, Collection<String> variableNames) {
return commandExecutor.execute(new GetExecutionVariablesCmd(executionId, variableNames, true));
}