001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/db/MessageStatisticsBean.java,v 1.8 2007/10/09 11:09:19 lexuanttkhtn Exp $
003: * $Author: lexuanttkhtn $
004: * $Revision: 1.8 $
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: */
040: package com.mvnforum.db;
041:
042: import java.sql.Timestamp;
043:
044: /*
045: * Included columns: FromID, ToID, MessageCreationDate, MessageAttachCount, MessageType,
046: * MessageOption, MessageStatus
047: * Excluded columns:
048: */
049: public class MessageStatisticsBean {
050: private int fromID;
051: private int toID;
052: private Timestamp messageCreationDate;
053: private int messageAttachCount;
054: private int messageType;
055: private int messageOption;
056: private int messageStatus;
057:
058: public int getFromID() {
059: return fromID;
060: }
061:
062: public void setFromID(int fromID) {
063: this .fromID = fromID;
064: }
065:
066: public int getToID() {
067: return toID;
068: }
069:
070: public void setToID(int toID) {
071: this .toID = toID;
072: }
073:
074: public Timestamp getMessageCreationDate() {
075: return messageCreationDate;
076: }
077:
078: public void setMessageCreationDate(Timestamp messageCreationDate) {
079: this .messageCreationDate = messageCreationDate;
080: }
081:
082: public int getMessageAttachCount() {
083: return messageAttachCount;
084: }
085:
086: public void setMessageAttachCount(int messageAttachCount) {
087: this .messageAttachCount = messageAttachCount;
088: }
089:
090: public int getMessageType() {
091: return messageType;
092: }
093:
094: public void setMessageType(int messageType) {
095: this .messageType = messageType;
096: }
097:
098: public int getMessageOption() {
099: return messageOption;
100: }
101:
102: public void setMessageOption(int messageOption) {
103: this .messageOption = messageOption;
104: }
105:
106: public int getMessageStatus() {
107: return messageStatus;
108: }
109:
110: public void setMessageStatus(int messageStatus) {
111: this .messageStatus = messageStatus;
112: }
113:
114: } //end of class MessageStatisticsBean
|