package org.sakaiproject.sitestats.api; import java.util.Date; public interface UserStat { /** Get the db row id. */ public long getId(); /** Set the db row id. */ public void setId(long id); /** Get the date this record refers to. */ public Date getDate(); /** Set the date this record refers to. */ public void setDate(Date date); /** Get the user we are tracking. */ public String getUserId(); /** Set the user we are tracking */ public void setUserId(String userId); /** Get the total times this event was generated on this context and date. */ public long getCount(); /** Set the total times this event was generated on this context and date. */ public void setCount(long count); }