/**
  * Lists all the record stores available in the system.
  *
  * @return The list of record store names
  */
 public List<String> listRecordStoreNames() throws AnalyticsWebServiceException {
   try {
     return analyticsDataAPI.listRecordStoreNames();
   } catch (Exception e) {
     logger.error("Unable to get record store names: " + e.getMessage(), e);
     throw new AnalyticsWebServiceException(
         "Unable to get record store names: " + e.getMessage(), e);
   }
 }