Пример #1
0
  /**
   * Retrieves all service
   *
   * @return All service records
   */
  @SuppressWarnings("unchecked")
  public List<AlertServiceRef> findAll() {
    List<AlertServiceRef> services = null;

    log.debug("Performing retrieve of all services");

    try {
      services = objectDao.findAll(AlertServiceRef.class);
    } catch (Throwable t) {
      log.error("Failure during object findAll", t);
    }

    log.debug("Completed service retrieve all");

    return services;
  }