171172173174175176177
Map<String, Object> variables = commandService.execute(cmd); return variables.get(variableName); } public Set<String> getVariableNames(String taskDbid) { return commandService.execute(new GetTaskVariableNamesCmd(taskDbid)); }
185186187188189190191