Package com.hbasebook.hush.model

Examples of com.hbasebook.hush.model.ShortUrlStatistics


  public List<ShortUrlStatistics> getUserShortUrlStatistics(String username)
    throws IOException {
    List<ShortUrlStatistics> stats = new ArrayList<ShortUrlStatistics>();
    for (ShortUrl surl : rm.getUrlManager().getShortUrlsByUser(username)) {
      ShortUrlStatistics stat = getDailyStatistics(surl, 30, 110.0);
      stats.add(stat);
    }
    return stats;
  }
View Full Code Here


      normalizeData(clicks, normalize, maxValue);
    }

    manager.putTable(table);

    ShortUrlStatistics statistics = new ShortUrlStatistics(shortUrl,
      TimeFrame.DAY);
    statistics.addCounters("clicks", clicks);
    statistics.addCounters("clicksbycountry",
      new TreeSet<Counter<String, Long>>(clicksByCountry.values()));
    return statistics;
  }
View Full Code Here

TOP

Related Classes of com.hbasebook.hush.model.ShortUrlStatistics

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.