private List createBatchCommands()

in src/main/java/org/apache/nutch/webui/client/impl/RemoteCommandsBatchFactory.java [51:62]


  private List<RemoteCommand> createBatchCommands() {
    this.batchId = UUID.randomUUID().toString();
    List<RemoteCommand> batchCommands = Lists.newArrayList();

    batchCommands.add(createGenerateCommand());
    batchCommands.add(createFetchCommand());
    batchCommands.add(createParseCommand());
    batchCommands.add(createUpdateDbCommand());
    batchCommands.add(createIndexCommand());

    return batchCommands;
  }