001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/contrib/phpbb2mvnforum/src/org/mvnforum/phpbb2mvnforum/db/PhpbbAuthAccess.java,v 1.3 2007/01/15 10:27:34 dungbtm Exp $
003: * $Author: dungbtm $
004: * $Revision: 1.3 $
005: * $Date: 2007/01/15 10:27:34 $
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, forum_id, auth_view, auth_read, auth_post,
044: * auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce,
045: * auth_vote, auth_pollcreate, auth_attachments, auth_mod
046: * Excluded columns:
047: */
048: public class PhpbbAuthAccess {
049: private int group_id;
050:
051: private int forum_id;
052:
053: private int auth_view;
054:
055: private int auth_read;
056:
057: private int auth_post;
058:
059: private int auth_reply;
060:
061: private int auth_edit;
062:
063: private int auth_delete;
064:
065: private int auth_sticky;
066:
067: private int auth_announce;
068:
069: private int auth_vote;
070:
071: private int auth_pollcreate;
072:
073: private int auth_attachments;
074:
075: private int auth_mod;
076:
077: public int getgroup_id() {
078: return group_id;
079: }
080:
081: public void setgroup_id(int group_id) {
082: this .group_id = group_id;
083: }
084:
085: public int getforum_id() {
086: return forum_id;
087: }
088:
089: public void setforum_id(int forum_id) {
090: this .forum_id = forum_id;
091: }
092:
093: public int getauth_view() {
094: return auth_view;
095: }
096:
097: public void setauth_view(int auth_view) {
098: this .auth_view = auth_view;
099: }
100:
101: public int getauth_read() {
102: return auth_read;
103: }
104:
105: public void setauth_read(int auth_read) {
106: this .auth_read = auth_read;
107: }
108:
109: public int getauth_post() {
110: return auth_post;
111: }
112:
113: public void setauth_post(int auth_post) {
114: this .auth_post = auth_post;
115: }
116:
117: public int getauth_reply() {
118: return auth_reply;
119: }
120:
121: public void setauth_reply(int auth_reply) {
122: this .auth_reply = auth_reply;
123: }
124:
125: public int getauth_edit() {
126: return auth_edit;
127: }
128:
129: public void setauth_edit(int auth_edit) {
130: this .auth_edit = auth_edit;
131: }
132:
133: public int getauth_delete() {
134: return auth_delete;
135: }
136:
137: public void setauth_delete(int auth_delete) {
138: this .auth_delete = auth_delete;
139: }
140:
141: public int getauth_sticky() {
142: return auth_sticky;
143: }
144:
145: public void setauth_sticky(int auth_sticky) {
146: this .auth_sticky = auth_sticky;
147: }
148:
149: public int getauth_announce() {
150: return auth_announce;
151: }
152:
153: public void setauth_announce(int auth_announce) {
154: this .auth_announce = auth_announce;
155: }
156:
157: public int getauth_vote() {
158: return auth_vote;
159: }
160:
161: public void setauth_vote(int auth_vote) {
162: this .auth_vote = auth_vote;
163: }
164:
165: public int getauth_pollcreate() {
166: return auth_pollcreate;
167: }
168:
169: public void setauth_pollcreate(int auth_pollcreate) {
170: this .auth_pollcreate = auth_pollcreate;
171: }
172:
173: public int getauth_attachments() {
174: return auth_attachments;
175: }
176:
177: public void setauth_attachments(int auth_attachments) {
178: this .auth_attachments = auth_attachments;
179: }
180:
181: public int getauth_mod() {
182: return auth_mod;
183: }
184:
185: public void setauth_mod(int auth_mod) {
186: this .auth_mod = auth_mod;
187: }
188: } //end of class phpbb_auth_accessBean
|