public Execution findExecution(String processDefinitionName, String key) {
return (Execution) commandService.execute(new FindExecution(processDefinitionName, key));
}
public Object getVariable(long executionDbid, String variableName) {
return commandService.execute(new GetVariable(executionDbid, variableName));
}