001: /*
002: * Copyright (c) JForum Team
003: * All rights reserved.
004: *
005: * Redistribution and use in source and binary forms,
006: * with or without modification, are permitted provided
007: * that the following conditions are met:
008: *
009: * 1) Redistributions of source code must retain the above
010: * copyright notice, this list of conditions and the
011: * following disclaimer.
012: * 2) Redistributions in binary form must reproduce the
013: * above copyright notice, this list of conditions and
014: * the following disclaimer in the documentation and/or
015: * other materials provided with the distribution.
016: * 3) Neither the name of "Rafael Steil" nor
017: * the names of its contributors may be used to endorse
018: * or promote products derived from this software without
019: * specific prior written permission.
020: *
021: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
022: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
023: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
024: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
025: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
026: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
027: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
028: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
029: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
030: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
031: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
032: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
033: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
034: * IN CONTRACT, STRICT LIABILITY, OR TORT
035: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
036: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
037: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
038: *
039: * Created on Jan 11, 2005 11:05:57 PM
040: * The JForum Project
041: * http://www.jforum.net
042: */
043: package net.jforum.entities;
044:
045: import java.io.Serializable;
046:
047: /**
048: * @author Rafael Steil
049: * @version $Id: KarmaStatus.java,v 1.8 2006/08/23 02:13:46 rafaelsteil Exp $
050: */
051: public class KarmaStatus implements Serializable {
052: private int id;
053:
054: /**
055: * Karma average. Total points receveid / number of votes.
056: */
057: private double karmaPoints;
058:
059: /**
060: * Sum of all votes received.
061: */
062: private int totalPoints;
063:
064: /**
065: * Number of votes received.
066: */
067: private int votesReceived;
068:
069: /**
070: * Number of votes given to other users.
071: */
072: private int votesGiven;
073:
074: public KarmaStatus() {
075: }
076:
077: public KarmaStatus(KarmaStatus karma) {
078: if (karma != null) {
079: this .id = karma.getId();
080: this .karmaPoints = karma.getKarmaPoints();
081: }
082: }
083:
084: public KarmaStatus(int id, double points) {
085: this .id = id;
086: this .karmaPoints = points;
087: }
088:
089: /**
090: * @return Returns the karmaPoints.
091: */
092: public double getKarmaPoints() {
093: return this .karmaPoints;
094: }
095:
096: public void setKarmaPoints(double points) {
097: this .karmaPoints = points;
098: }
099:
100: /**
101: * @return Returns the userId.
102: */
103: public int getId() {
104: return this .id;
105: }
106:
107: /**
108: * @param userId The userId to set.
109: */
110: public void setId(int userId) {
111: this .id = userId;
112: }
113:
114: public int getVotesReceived() {
115: return votesReceived;
116: }
117:
118: public void setVotesReceived(int votesReceived) {
119: this .votesReceived = votesReceived;
120: }
121:
122: public int getTotalPoints() {
123: return totalPoints;
124: }
125:
126: public void setTotalPoints(int totalPoints) {
127: this .totalPoints = totalPoints;
128: }
129:
130: public int getVotesGiven() {
131: return votesGiven;
132: }
133:
134: public void setVotesGiven(int votesGiven) {
135: this.votesGiven = votesGiven;
136: }
137: }
|