KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > jforum > entities > Karma


1 /*
2  * Copyright (c) 2003, Rafael Steil
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms,
6  * with or without modification, are permitted provided
7  * that the following conditions are met:
8  *
9  * 1) Redistributions of source code must retain the above
10  * copyright notice, this list of conditions and the
11  * following disclaimer.
12  * 2) Redistributions in binary form must reproduce the
13  * above copyright notice, this list of conditions and
14  * the following disclaimer in the documentation and/or
15  * other materials provided with the distribution.
16  * 3) Neither the name of "Rafael Steil" nor
17  * the names of its contributors may be used to endorse
18  * or promote products derived from this software without
19  * specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
22  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
23  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
27  * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
32  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
34  * IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
36  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
37  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
38  *
39  * Created on Jan 11, 2005 10:57:13 PM
40  * The JForum Project
41  * http://www.jforum.net
42  */

43 package net.jforum.entities;
44
45 import java.util.Date JavaDoc;
46
47 /**
48  * @author Rafael Steil
49  * @version $Id: Karma.java,v 1.5 2005/07/26 03:04:51 rafaelsteil Exp $
50  */

51 public class Karma
52 {
53     private int id;
54     private int postId;
55     private int topicId;
56     private int postUserId;
57     private int fromUserId;
58     private int points;
59     private Date JavaDoc rateDate;
60     
61     /**
62      * @return Returns the topicId.
63      */

64     public int getTopicId()
65     {
66         return this.topicId;
67     }
68     
69     /**
70      * @param topicId The topicId to set.
71      */

72     public void setTopicId(int topicId)
73     {
74         this.topicId = topicId;
75     }
76     
77     /**
78      * @return Returns the fromUserId.
79      */

80     public int getFromUserId()
81     {
82         return this.fromUserId;
83     }
84     
85     /**
86      * @param fromUserId The fromUserId to set.
87      */

88     public void setFromUserId(int fromUserId)
89     {
90         this.fromUserId = fromUserId;
91     }
92     
93     /**
94      * @return Returns the id.
95      */

96     public int getId()
97     {
98         return this.id;
99     }
100     
101     /**
102      * @param id The id to set.
103      */

104     public void setId(int id)
105     {
106         this.id = id;
107     }
108     
109     /**
110      * @return Returns the userId.
111      */

112     public int getPostUserId()
113     {
114         return this.postUserId;
115     }
116     
117     /**
118      * @param userId The userId to set.
119      */

120     public void setPostUserId(int userId)
121     {
122         this.postUserId = userId;
123     }
124     
125     /**
126      * @return Returns the points.
127      */

128     public int getPoints()
129     {
130         return this.points;
131     }
132     
133     /**
134      * @param points The points to set.
135      */

136     public void setPoints(int points)
137     {
138         this.points = points;
139     }
140     
141     /**
142      * @return Returns the postId.
143      */

144     public int getPostId()
145     {
146         return this.postId;
147     }
148     
149     /**
150      * @param postId The postId to set.
151      */

152     public void setPostId(int postId)
153     {
154         this.postId = postId;
155     }
156     
157     /**
158      * @return Returns the date of the vote.
159      */

160     public Date JavaDoc getRateDate()
161     {
162         return rateDate;
163     }
164     
165     /**
166      * @param dateDate The date of the vote.
167      */

168     public void setRateDate(Date JavaDoc rateDate)
169     {
170         this.rateDate = rateDate;
171     }
172 }
173
Popular Tags