Code Search for Developers
 
 
  

StatisticMapRepository.java from Tea Stats at Krugle


Show StatisticMapRepository.java syntax highlighted

/*
 * This file is distributed under the GPL v2 as part of teastats site statistics package
 * http://teastats.sourceforge.net
 */
package net.time4tea.webstats.statistic.repo;

import net.time4tea.webstats.jms.EnvironmentException;
import net.time4tea.webstats.statistic.StatisticMap;
import org.joda.time.Instant;

import java.util.Collection;

/**
 * Originally richja Apr 28, 2006
 */
public interface StatisticMapRepository {
    StatisticMap getStatisticMapForInstant(String name, Instant instant) throws EnvironmentException;
    Collection<StatisticMap> findAll() throws EnvironmentException;
    Collection<Instant> findPeriodsAvailableForNamedMap(String name) throws EnvironmentException;
    void sync() throws EnvironmentException;
}




See more files for this project here

Tea Stats

Web log analyzer... Written in OO Perl, provides the usual host / page analysis. Can also do site graphing using graphviz, browser, os, worm and search engine identification, and country and session tracking.

Project homepage: http://sourceforge.net/projects/teastats
Programming language(s): Java
License: other

  CachingStatisticMapRepository.java
  DailyStatisticMapRepository.java
  DiskBasedStatisticMapRepository.java
  MonthlyStatisticMapRepository.java
  SingleStatisticMapRepository.java
  StatisticMapRepository.java