/**
  * Returns the record store name given the table information.
  *
  * @param tableName The table name
  * @return The record store name
  * @throws AnalyticsWebServiceException
  */
 public String getRecordStoreNameByTable(String tableName) throws AnalyticsWebServiceException {
   try {
     return analyticsDataAPI.getRecordStoreNameByTable(getUsername(), tableName);
   } catch (Exception e) {
     logger.error(
         "Unable to get record store name for table[" + tableName + "]: " + e.getMessage(), e);
     throw new AnalyticsWebServiceException(
         "Unable to get record store name for table[" + tableName + "]: " + e.getMessage(), e);
   }
 }