KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > vh > Stats


1 package org.javabb.vh;
2
3 import java.io.Serializable JavaDoc;
4
5 import org.javabb.vo.VOObject;
6
7 /*
8  * Copyright 2004 JavaFree.org
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */

22
23 /**
24  * $Id: Stats.java,v 1.3.8.2 2006/04/17 17:46:59 daltoncamargo Exp $
25  * @author Dalton Camargo - <a HREF="mailto:dalton@javabb.org">dalton@javabb.org </a> <br>
26  * @author Ronald Tetsuo Miura
27  */

28 public class Stats extends VOObject implements Serializable JavaDoc {
29
30     private Long JavaDoc idStats;
31     private Long JavaDoc recordUsersOnline;
32
33     /* DUMMY ATTRIBUTES */
34     private Integer JavaDoc totalPostCount;
35     private Integer JavaDoc totalTopicCount;
36     private Long JavaDoc lastRegisteredUserId;
37     private String JavaDoc lastRegisteredUserName;
38     private Integer JavaDoc totalRegisteredUsers;
39
40     /**
41      * @return Returns the idStats.
42      */

43     public Long JavaDoc getIdStats() {
44         return idStats;
45     }
46
47     /**
48      * @param idStats The idStats to set.
49      */

50     public void setIdStats(Long JavaDoc idStats) {
51         this.idStats = idStats;
52     }
53
54     /**
55      * @return Returns the recordUsersOnline.
56      */

57     public Long JavaDoc getRecordUsersOnline() {
58         return recordUsersOnline;
59     }
60
61     /**
62      * @param recordUsersOnline The recordUsersOnline to set.
63      */

64     public void setRecordUsersOnline(Long JavaDoc recordUsersOnline) {
65         this.recordUsersOnline = recordUsersOnline;
66     }
67
68     /**
69      * @return Returns the totalPostCount.
70      */

71     public Integer JavaDoc getTotalPostCount() {
72         return totalPostCount;
73     }
74
75     /**
76      * @param totalPostCount The totalPostCount to set.
77      */

78     public void setTotalPostCount(Integer JavaDoc totalPostCount) {
79         this.totalPostCount = totalPostCount;
80     }
81
82     /**
83      * @return Returns the totalTopicCount.
84      */

85     public Integer JavaDoc getTotalTopicCount() {
86         return totalTopicCount;
87     }
88
89     /**
90      * @param totalTopicCount The totalTopicCount to set.
91      */

92     public void setTotalTopicCount(Integer JavaDoc totalTopicCount) {
93         this.totalTopicCount = totalTopicCount;
94     }
95
96     /**
97      * @return Returns the lastRegisteredUserId.
98      */

99     public Long JavaDoc getLastRegisteredUserId() {
100         return lastRegisteredUserId;
101     }
102
103     /**
104      * @param lastRegisteredUserId The lastRegisteredUserId to set.
105      */

106     public void setLastRegisteredUserId(Long JavaDoc lastRegisteredUserId) {
107         this.lastRegisteredUserId = lastRegisteredUserId;
108     }
109
110     /**
111      * @return Returns the lastRegisteredUserName.
112      */

113     public String JavaDoc getLastRegisteredUserName() {
114         return lastRegisteredUserName;
115     }
116
117     /**
118      * @param lastRegisteredUserName The lastRegisteredUserName to set.
119      */

120     public void setLastRegisteredUserName(String JavaDoc lastRegisteredUserName) {
121         this.lastRegisteredUserName = lastRegisteredUserName;
122     }
123
124     /**
125      * @return Returns the totalRegisteredUsers.
126      */

127     public Integer JavaDoc getTotalRegisteredUsers() {
128         return totalRegisteredUsers;
129     }
130
131     /**
132      * @param totalRegisteredUsers The totalRegisteredUsers to set.
133      */

134     public void setTotalRegisteredUsers(Integer JavaDoc totalRegisteredUsers) {
135         this.totalRegisteredUsers = totalRegisteredUsers;
136     }
137 }
Popular Tags