001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/db/PollVoteBean.java,v 1.2 2007/10/09 11:09:19 lexuanttkhtn Exp $
003: * $Author: lexuanttkhtn $
004: * $Revision: 1.2 $
005: * $Date: 2007/10/09 11:09:19 $
006: *
007: * ====================================================================
008: *
009: * Copyright (C) 2002-2007 by MyVietnam.net
010: *
011: * All copyright notices regarding mvnForum MUST remain
012: * intact in the scripts and in the outputted HTML.
013: * The "powered by" text/logo with a link back to
014: * http://www.mvnForum.com and http://www.MyVietnam.net in
015: * the footer of the pages MUST remain visible when the pages
016: * are viewed on the internet or intranet.
017: *
018: * This program is free software; you can redistribute it and/or modify
019: * it under the terms of the GNU General Public License as published by
020: * the Free Software Foundation; either version 2 of the License, or
021: * any later version.
022: *
023: * This program is distributed in the hope that it will be useful,
024: * but WITHOUT ANY WARRANTY; without even the implied warranty of
025: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
026: * GNU General Public License for more details.
027: *
028: * You should have received a copy of the GNU General Public License
029: * along with this program; if not, write to the Free Software
030: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
031: *
032: * Support can be obtained from support forums at:
033: * http://www.mvnForum.com/mvnforum/index
034: *
035: * Correspondence and Marketing Questions can be sent to:
036: * info at MyVietnam net
037: *
038: * @author: Minh Nguyen
039: * @author: Mai Nguyen
040: */
041: package com.mvnforum.db;
042:
043: import java.sql.Timestamp;
044:
045: public class PollVoteBean {
046:
047: private int pollAnswerID;
048: private String memberName;
049: private String pollVoteOpinion;
050: private String pollVoteIP;
051: private int pollVoteOption;
052: private int pollVoteStatus;
053: private int pollVoteType;
054: private Timestamp pollVoteCreationDate;
055: private Timestamp pollVoteModifiedDate;
056:
057: public int getPollAnswerID() {
058: return pollAnswerID;
059: }
060:
061: public void setPollAnswerID(int pollAnswerID) {
062: this .pollAnswerID = pollAnswerID;
063: }
064:
065: public String getMemberName() {
066: return memberName;
067: }
068:
069: public void setMemberName(String memberName) {
070: this .memberName = memberName;
071: }
072:
073: public String getPollVoteOpinion() {
074: return pollVoteOpinion;
075: }
076:
077: public void setPollVoteOpinion(String pollVoteOpinion) {
078: this .pollVoteOpinion = pollVoteOpinion;
079: }
080:
081: public String getPollVoteIP() {
082: return pollVoteIP;
083: }
084:
085: public void setPollVoteIP(String pollVoteIP) {
086: this .pollVoteIP = pollVoteIP;
087: }
088:
089: public int getPollVoteOption() {
090: return pollVoteOption;
091: }
092:
093: public void setPollVoteOption(int pollVoteOption) {
094: this .pollVoteOption = pollVoteOption;
095: }
096:
097: public int getPollVoteStatus() {
098: return pollVoteStatus;
099: }
100:
101: public void setPollVoteStatus(int pollVoteStatus) {
102: this .pollVoteStatus = pollVoteStatus;
103: }
104:
105: public int getPollVoteType() {
106: return pollVoteType;
107: }
108:
109: public void setPollVoteType(int pollVoteType) {
110: this .pollVoteType = pollVoteType;
111: }
112:
113: public Timestamp getPollVoteCreationDate() {
114: return pollVoteCreationDate;
115: }
116:
117: public void setPollVoteCreationDate(Timestamp pollVoteCreationDate) {
118: this .pollVoteCreationDate = pollVoteCreationDate;
119: }
120:
121: public Timestamp getPollVoteModifiedDate() {
122: return pollVoteModifiedDate;
123: }
124:
125: public void setPollVoteModifiedDate(Timestamp pollVoteModifiedDate) {
126: this.pollVoteModifiedDate = pollVoteModifiedDate;
127: }
128:
129: }
|