1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.statistics.impl;
18
19 import org.apache.jetspeed.statistics.StatisticsQueryCriteria;
20
21 public class StatisticsQueryCriteriaImpl implements StatisticsQueryCriteria
22 {
23
24 private String user;
25
26 private String timePeriod;
27
28 private String queryType;
29
30 private String listsize;
31
32 private String sorttype;
33
34 private String sortorder;
35
36 /***
37 * @return Returns the ipAddress.
38 */
39 public String getTimePeriod()
40 {
41 return timePeriod;
42 }
43
44 /***
45 * @param ipAddress
46 * The ipAddress to set.
47 */
48 public void setTimePeriod(String ipAddress)
49 {
50 this.timePeriod = ipAddress;
51 }
52
53 /***
54 * @return Returns the user.
55 */
56 public String getUser()
57 {
58 return user;
59 }
60
61 /***
62 * @param user
63 * The user to set.
64 */
65 public void setUser(String user)
66 {
67 this.user = user;
68 }
69
70
71
72
73
74
75 public String getQueryType()
76 {
77
78 return queryType;
79 }
80
81
82
83
84
85
86 public void setQueryType(String queryType)
87 {
88 this.queryType = queryType;
89 }
90
91
92
93
94 public String getListsize()
95 {
96 return this.listsize;
97 }
98
99
100
101
102 public String getSorttype()
103 {
104 return this.sorttype;
105 }
106
107
108
109
110 public void setListsize(String listsize)
111 {
112 this.listsize = listsize;
113
114 }
115
116
117
118
119 public void setSorttype(String sorttype)
120 {
121 this.sorttype = sorttype;
122 }
123
124
125
126
127 public String getSortorder()
128 {
129 return this.sortorder;
130 }
131
132
133
134
135 public void setSortorder(String sortorder)
136 {
137 this.sortorder = sortorder;
138
139 }
140 }