public Object getVariable(long executionDbid, String variableName) {
return commandService.execute(new GetVariable(executionDbid, variableName));
}
public Map<String, Object> getVariables(long executionDbid, List<String> variableNames) {
return (Map) commandService.execute(new GetVariables(executionDbid, variableNames));
}