Source Code Cross Referenced for PhpbbUsers.java in  » Forum » mvnforum-1.1 » org » mvnforum » phpbb2mvnforum » db » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Forum » mvnforum 1.1 » org.mvnforum.phpbb2mvnforum.db 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $Header: /cvsroot/mvnforum/mvnforum/contrib/phpbb2mvnforum/src/org/mvnforum/phpbb2mvnforum/db/PhpbbUsers.java,v 1.4 2007/01/15 10:27:32 dungbtm Exp $
003:         * $Author: dungbtm $
004:         * $Revision: 1.4 $
005:         * $Date: 2007/01/15 10:27:32 $
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:        import java.math.BigDecimal;
043:
044:        /**
045:         * PhpbbUsers generated by hbm2java
046:         */
047:        public class PhpbbUsers implements  java.io.Serializable {
048:
049:            // Fields    
050:
051:            private int userId;
052:
053:            private int userActive;
054:
055:            private String username;
056:
057:            private String userPassword;
058:
059:            private long userSessionTime;
060:
061:            private int userSessionPage;
062:
063:            private long userLastvisit;
064:
065:            private long userRegdate;
066:
067:            private int userLevel;
068:
069:            private int userPosts;
070:
071:            private BigDecimal userTimezone;
072:
073:            private int userStyle;
074:
075:            private String userLang;
076:
077:            private String userDateformat;
078:
079:            private int userNewPrivmsg;
080:
081:            private int userUnreadPrivmsg;
082:
083:            private long userLastPrivmsg;
084:
085:            private int userEmailtime;
086:
087:            private int userViewemail;
088:
089:            private int userAttachsig;
090:
091:            private int userAllowhtml;
092:
093:            private int userAllowbbcode;
094:
095:            private int userAllowsmile;
096:
097:            private int userAllowavatar;
098:
099:            private int userAllowPm;
100:
101:            private int userAllowViewonline;
102:
103:            private int userNotify;
104:
105:            private int userNotifyPm;
106:
107:            private int userPopupPm;
108:
109:            private int userRank;
110:
111:            private String userAvatar;
112:
113:            private int userAvatarType;
114:
115:            private String userEmail;
116:
117:            private String userIcq;
118:
119:            private String userWebsite;
120:
121:            private String userFrom;
122:
123:            private String userSig;
124:
125:            private String userSigBbcodeUid;
126:
127:            private String userAim;
128:
129:            private String userYim;
130:
131:            private String userMsnm;
132:
133:            private String userOcc;
134:
135:            private String userInterests;
136:
137:            private String userActkey;
138:
139:            private String userNewpasswd;
140:
141:            // Constructors
142:
143:            /** default constructor */
144:            public PhpbbUsers() {
145:            }
146:
147:            public int getUserActive() {
148:                return userActive;
149:            }
150:
151:            public void setUserActive(int userActive) {
152:                this .userActive = userActive;
153:            }
154:
155:            public String getUserActkey() {
156:                return userActkey;
157:            }
158:
159:            public void setUserActkey(String userActkey) {
160:                this .userActkey = userActkey;
161:            }
162:
163:            public String getUserAim() {
164:                return userAim;
165:            }
166:
167:            public void setUserAim(String userAim) {
168:                this .userAim = userAim;
169:            }
170:
171:            public int getUserAllowavatar() {
172:                return userAllowavatar;
173:            }
174:
175:            public void setUserAllowavatar(int userAllowavatar) {
176:                this .userAllowavatar = userAllowavatar;
177:            }
178:
179:            public int getUserAllowbbcode() {
180:                return userAllowbbcode;
181:            }
182:
183:            public void setUserAllowbbcode(int userAllowbbcode) {
184:                this .userAllowbbcode = userAllowbbcode;
185:            }
186:
187:            public int getUserAllowhtml() {
188:                return userAllowhtml;
189:            }
190:
191:            public void setUserAllowhtml(int userAllowhtml) {
192:                this .userAllowhtml = userAllowhtml;
193:            }
194:
195:            public int getUserAllowPm() {
196:                return userAllowPm;
197:            }
198:
199:            public void setUserAllowPm(int userAllowPm) {
200:                this .userAllowPm = userAllowPm;
201:            }
202:
203:            public int getUserAllowsmile() {
204:                return userAllowsmile;
205:            }
206:
207:            public void setUserAllowsmile(int userAllowsmile) {
208:                this .userAllowsmile = userAllowsmile;
209:            }
210:
211:            public int getUserAllowViewonline() {
212:                return userAllowViewonline;
213:            }
214:
215:            public void setUserAllowViewonline(int userAllowViewonline) {
216:                this .userAllowViewonline = userAllowViewonline;
217:            }
218:
219:            public int getUserAttachsig() {
220:                return userAttachsig;
221:            }
222:
223:            public void setUserAttachsig(int userAttachsig) {
224:                this .userAttachsig = userAttachsig;
225:            }
226:
227:            public String getUserAvatar() {
228:                return userAvatar;
229:            }
230:
231:            public void setUserAvatar(String userAvatar) {
232:                this .userAvatar = userAvatar;
233:            }
234:
235:            public int getUserAvatarType() {
236:                return userAvatarType;
237:            }
238:
239:            public void setUserAvatarType(int userAvatarType) {
240:                this .userAvatarType = userAvatarType;
241:            }
242:
243:            public String getUserDateformat() {
244:                return userDateformat;
245:            }
246:
247:            public void setUserDateformat(String userDateformat) {
248:                this .userDateformat = userDateformat;
249:            }
250:
251:            public String getUserEmail() {
252:                return userEmail;
253:            }
254:
255:            public void setUserEmail(String userEmail) {
256:                this .userEmail = userEmail;
257:            }
258:
259:            public int getUserEmailtime() {
260:                return userEmailtime;
261:            }
262:
263:            public void setUserEmailtime(int userEmailtime) {
264:                this .userEmailtime = userEmailtime;
265:            }
266:
267:            public String getUserFrom() {
268:                return userFrom;
269:            }
270:
271:            public void setUserFrom(String userFrom) {
272:                this .userFrom = userFrom;
273:            }
274:
275:            public String getUserIcq() {
276:                return userIcq;
277:            }
278:
279:            public void setUserIcq(String userIcq) {
280:                this .userIcq = userIcq;
281:            }
282:
283:            public int getUserId() {
284:                return userId;
285:            }
286:
287:            public void setUserId(int userId) {
288:                this .userId = userId;
289:            }
290:
291:            public String getUserInterests() {
292:                return userInterests;
293:            }
294:
295:            public void setUserInterests(String userInterests) {
296:                this .userInterests = userInterests;
297:            }
298:
299:            public String getUserLang() {
300:                return userLang;
301:            }
302:
303:            public void setUserLang(String userLang) {
304:                this .userLang = userLang;
305:            }
306:
307:            public long getUserLastPrivmsg() {
308:                return userLastPrivmsg;
309:            }
310:
311:            public void setUserLastPrivmsg(long userLastPrivmsg) {
312:                this .userLastPrivmsg = userLastPrivmsg;
313:            }
314:
315:            public long getUserLastvisit() {
316:                return userLastvisit;
317:            }
318:
319:            public void setUserLastvisit(long userLastvisit) {
320:                this .userLastvisit = userLastvisit;
321:            }
322:
323:            public int getUserLevel() {
324:                return userLevel;
325:            }
326:
327:            public void setUserLevel(int userLevel) {
328:                this .userLevel = userLevel;
329:            }
330:
331:            public String getUserMsnm() {
332:                return userMsnm;
333:            }
334:
335:            public void setUserMsnm(String userMsnm) {
336:                this .userMsnm = userMsnm;
337:            }
338:
339:            public String getUsername() {
340:                return username;
341:            }
342:
343:            public void setUsername(String username) {
344:                this .username = username;
345:            }
346:
347:            public String getUserNewpasswd() {
348:                return userNewpasswd;
349:            }
350:
351:            public void setUserNewpasswd(String userNewpasswd) {
352:                this .userNewpasswd = userNewpasswd;
353:            }
354:
355:            public int getUserNewPrivmsg() {
356:                return userNewPrivmsg;
357:            }
358:
359:            public void setUserNewPrivmsg(int userNewPrivmsg) {
360:                this .userNewPrivmsg = userNewPrivmsg;
361:            }
362:
363:            public int getUserNotify() {
364:                return userNotify;
365:            }
366:
367:            public void setUserNotify(int userNotify) {
368:                this .userNotify = userNotify;
369:            }
370:
371:            public int getUserNotifyPm() {
372:                return userNotifyPm;
373:            }
374:
375:            public void setUserNotifyPm(int userNotifyPm) {
376:                this .userNotifyPm = userNotifyPm;
377:            }
378:
379:            public String getUserOcc() {
380:                return userOcc;
381:            }
382:
383:            public void setUserOcc(String userOcc) {
384:                this .userOcc = userOcc;
385:            }
386:
387:            public String getUserPassword() {
388:                return userPassword;
389:            }
390:
391:            public void setUserPassword(String userPassword) {
392:                this .userPassword = userPassword;
393:            }
394:
395:            public int getUserPopupPm() {
396:                return userPopupPm;
397:            }
398:
399:            public void setUserPopupPm(int userPopupPm) {
400:                this .userPopupPm = userPopupPm;
401:            }
402:
403:            public int getUserPosts() {
404:                return userPosts;
405:            }
406:
407:            public void setUserPosts(int userPosts) {
408:                this .userPosts = userPosts;
409:            }
410:
411:            public int getUserRank() {
412:                return userRank;
413:            }
414:
415:            public void setUserRank(int userRank) {
416:                this .userRank = userRank;
417:            }
418:
419:            public int getUserSessionPage() {
420:                return userSessionPage;
421:            }
422:
423:            public void setUserSessionPage(int userSessionPage) {
424:                this .userSessionPage = userSessionPage;
425:            }
426:
427:            public long getUserSessionTime() {
428:                return userSessionTime;
429:            }
430:
431:            public void setUserSessionTime(long userSessionTime) {
432:                this .userSessionTime = userSessionTime;
433:            }
434:
435:            public String getUserSig() {
436:                return userSig;
437:            }
438:
439:            public void setUserSig(String userSig) {
440:                this .userSig = userSig;
441:            }
442:
443:            public String getUserSigBbcodeUid() {
444:                return userSigBbcodeUid;
445:            }
446:
447:            public void setUserSigBbcodeUid(String userSigBbcodeUid) {
448:                this .userSigBbcodeUid = userSigBbcodeUid;
449:            }
450:
451:            public int getUserStyle() {
452:                return userStyle;
453:            }
454:
455:            public void setUserStyle(int userStyle) {
456:                this .userStyle = userStyle;
457:            }
458:
459:            public BigDecimal getUserTimezone() {
460:                return userTimezone;
461:            }
462:
463:            public void setUserTimezone(BigDecimal userTimezone) {
464:                this .userTimezone = userTimezone;
465:            }
466:
467:            public int getUserUnreadPrivmsg() {
468:                return userUnreadPrivmsg;
469:            }
470:
471:            public void setUserUnreadPrivmsg(int userUnreadPrivmsg) {
472:                this .userUnreadPrivmsg = userUnreadPrivmsg;
473:            }
474:
475:            public int getUserViewemail() {
476:                return userViewemail;
477:            }
478:
479:            public void setUserViewemail(int userViewemail) {
480:                this .userViewemail = userViewemail;
481:            }
482:
483:            public String getUserWebsite() {
484:                return userWebsite;
485:            }
486:
487:            public void setUserWebsite(String userWebsite) {
488:                this .userWebsite = userWebsite;
489:            }
490:
491:            public String getUserYim() {
492:                return userYim;
493:            }
494:
495:            public void setUserYim(String userYim) {
496:                this .userYim = userYim;
497:            }
498:
499:            public long getUserRegdate() {
500:                return userRegdate;
501:            }
502:
503:            public void setUserRegdate(long userRegdate) {
504:                this.userRegdate = userRegdate;
505:            }
506:
507:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.