KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mvnforum > phpbb2mvnforum > db > PhpbbAuthAccess


1 package org.mvnforum.phpbb2mvnforum.db;
2
3 /*
4  * Included columns: group_id, forum_id, auth_view, auth_read, auth_post,
5  * auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce,
6  * auth_vote, auth_pollcreate, auth_attachments, auth_mod
7  * Excluded columns:
8  */

9 public class PhpbbAuthAccess {
10     private int group_id;
11
12     private int forum_id;
13
14     private int auth_view;
15
16     private int auth_read;
17
18     private int auth_post;
19
20     private int auth_reply;
21
22     private int auth_edit;
23
24     private int auth_delete;
25
26     private int auth_sticky;
27
28     private int auth_announce;
29
30     private int auth_vote;
31
32     private int auth_pollcreate;
33
34     private int auth_attachments;
35
36     private int auth_mod;
37
38     public int getgroup_id() {
39         return group_id;
40     }
41
42     public void setgroup_id(int group_id) {
43         this.group_id = group_id;
44     }
45
46     public int getforum_id() {
47         return forum_id;
48     }
49
50     public void setforum_id(int forum_id) {
51         this.forum_id = forum_id;
52     }
53
54     public int getauth_view() {
55         return auth_view;
56     }
57
58     public void setauth_view(int auth_view) {
59         this.auth_view = auth_view;
60     }
61
62     public int getauth_read() {
63         return auth_read;
64     }
65
66     public void setauth_read(int auth_read) {
67         this.auth_read = auth_read;
68     }
69
70     public int getauth_post() {
71         return auth_post;
72     }
73
74     public void setauth_post(int auth_post) {
75         this.auth_post = auth_post;
76     }
77
78     public int getauth_reply() {
79         return auth_reply;
80     }
81
82     public void setauth_reply(int auth_reply) {
83         this.auth_reply = auth_reply;
84     }
85
86     public int getauth_edit() {
87         return auth_edit;
88     }
89
90     public void setauth_edit(int auth_edit) {
91         this.auth_edit = auth_edit;
92     }
93
94     public int getauth_delete() {
95         return auth_delete;
96     }
97
98     public void setauth_delete(int auth_delete) {
99         this.auth_delete = auth_delete;
100     }
101
102     public int getauth_sticky() {
103         return auth_sticky;
104     }
105
106     public void setauth_sticky(int auth_sticky) {
107         this.auth_sticky = auth_sticky;
108     }
109
110     public int getauth_announce() {
111         return auth_announce;
112     }
113
114     public void setauth_announce(int auth_announce) {
115         this.auth_announce = auth_announce;
116     }
117
118     public int getauth_vote() {
119         return auth_vote;
120     }
121
122     public void setauth_vote(int auth_vote) {
123         this.auth_vote = auth_vote;
124     }
125
126     public int getauth_pollcreate() {
127         return auth_pollcreate;
128     }
129
130     public void setauth_pollcreate(int auth_pollcreate) {
131         this.auth_pollcreate = auth_pollcreate;
132     }
133
134     public int getauth_attachments() {
135         return auth_attachments;
136     }
137
138     public void setauth_attachments(int auth_attachments) {
139         this.auth_attachments = auth_attachments;
140     }
141
142     public int getauth_mod() {
143         return auth_mod;
144     }
145
146     public void setauth_mod(int auth_mod) {
147         this.auth_mod = auth_mod;
148     }
149 } //end of class phpbb_auth_accessBean
150
Popular Tags