public List getInstances()

in src/main/java/org/apache/nutch/webui/service/impl/NutchInstanceServiceImpl.java [41:48]


  public List<NutchInstance> getInstances() {
    try {
      return instancesDao.queryForAll();
    } catch (SQLException e) {
      throw new RuntimeException(e);
    }

  }