adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / form / BotListVisitLogStatsForm.java
blobfeb2ef5d69ee614fbaffe516ce54c69b1f4f209d
1 /**
2 * Berlin Brown
3 * Copyright (c) 2006 - 2007, Newspiritcompany.com
5 * Jan 9, 2007
6 */
7 package org.spirit.form;
9 import java.util.Map;
11 import org.spirit.form.base.BotListBaseForm;
13 /**
14 * This is class is used by botverse.
15 * @author Berlin Brown
18 public class BotListVisitLogStatsForm extends BotListBaseForm {
20 /**
23 private static final long serialVersionUID = 5392393572244933059L;
25 private Long weekVisits;
26 private Map weekStats;
27 private Map weekStatsDates;
29 /**
30 * @return the weekStatsDates
32 public Map getWeekStatsDates() {
33 return weekStatsDates;
36 /**
37 * @param weekStatsDates the weekStatsDates to set
39 public void setWeekStatsDates(Map weekStatsDates) {
40 this.weekStatsDates = weekStatsDates;
43 /**
44 * @return the weekStats
46 public Map getWeekStats() {
47 return weekStats;
50 /**
51 * @param weekStats the weekStats to set
53 public void setWeekStats(Map weekStats) {
54 this.weekStats = weekStats;
57 /**
58 * @return the weekVisits
60 public Long getWeekVisits() {
61 return weekVisits;
64 /**
65 * @param weekVisits the weekVisits to set
67 public void setWeekVisits(Long weekVisits) {
68 this.weekVisits = weekVisits;