128129130131132133134
public CommandService getCommandService() { return commandService; } public Collection<ProcessInstance> getProcessInstances() { return this.commandService.execute( new GetProcessInstancesCommand() ); }
93949596979899
110111112113114115116
284285286287288289290
executeCommand(cmd); } @Override public Collection<ProcessInstance> getProcessInstances() { return (Collection<ProcessInstance>) executeCommand(new GetProcessInstancesCommand()); }