001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/contrib/phpbb2mvnforum/src/org/mvnforum/phpbb2mvnforum/db/PhpbbGroup.java,v 1.3 2007/01/15 10:27:33 dungbtm Exp $
003: * $Author: dungbtm $
004: * $Revision: 1.3 $
005: * $Date: 2007/01/15 10:27:33 $
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:
039: */
040: package org.mvnforum.phpbb2mvnforum.db;
041:
042: /*
043: * Included columns: group_id, group_type, group_name, group_description, group_moderator,
044: * group_single_user
045: * Excluded columns:
046: */
047: public class PhpbbGroup {
048: private int group_id;
049:
050: private int group_type;
051:
052: private String group_name;
053:
054: private String group_description;
055:
056: private int group_moderator;
057:
058: private int group_single_user;
059:
060: public int getgroup_id() {
061: return group_id;
062: }
063:
064: public void setgroup_id(int group_id) {
065: this .group_id = group_id;
066: }
067:
068: public int getgroup_type() {
069: return group_type;
070: }
071:
072: public void setgroup_type(int group_type) {
073: this .group_type = group_type;
074: }
075:
076: public String getgroup_name() {
077: return group_name;
078: }
079:
080: public void setgroup_name(String group_name) {
081: this .group_name = group_name;
082: }
083:
084: public String getgroup_description() {
085: return group_description;
086: }
087:
088: public void setgroup_description(String group_description) {
089: this .group_description = group_description;
090: }
091:
092: public int getgroup_moderator() {
093: return group_moderator;
094: }
095:
096: public void setgroup_moderator(int group_moderator) {
097: this .group_moderator = group_moderator;
098: }
099:
100: public int getgroup_single_user() {
101: return group_single_user;
102: }
103:
104: public void setgroup_single_user(int group_single_user) {
105: this.group_single_user = group_single_user;
106: }
107: }
|