646566676869707172
query.setCommandService(commandService); return query; } public HistoryTaskQuery createHistoryTaskQuery() { HistoryTaskQueryImpl query = commandService.execute(new CreateHistoryTaskQueryCmd()); query.setCommandService(commandService); return query; }
31323334353637
public class CreateHistoryTaskQueryCmd implements Command<HistoryTaskQueryImpl> { private static final long serialVersionUID = 1L; public HistoryTaskQueryImpl execute(Environment environment) throws Exception { return new HistoryTaskQueryImpl(); }
676869707172737475
32333435363738