Source Code Cross Referenced for Usergroup.java in  » Wiki-Engine » VeryQuickWiki » vqwiki » users » 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 » Wiki Engine » VeryQuickWiki » vqwiki.users 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * $Id: Usergroup.java 636 2006-04-20 00:14:40Z wrh2 $
03:         *
04:         * Filename  : Usergroup.java
05:         * Created   : 25.06.2004
06:         * Project   : VQWiki
07:         */
08:        package vqwiki.users;
09:
10:        import java.util.List;
11:
12:        /**
13:         * Abstract class to handle user groups
14:         *
15:         * @version $Revision: 636 $ - $Date: 2006-04-20 02:14:40 +0200 (do, 20 apr 2006) $
16:         * @author SinnerSchrader (tobsch)
17:         */
18:        public abstract class Usergroup {
19:
20:            /**
21:             * Get an instance of the user group class.
22:             * @return Instance to the user group class
23:             */
24:            public static Usergroup getInstance() {
25:                return null;
26:            }
27:
28:            /**
29:             * Get a list of all users.
30:             * @return List of all users. The list contains SelectorBeans with the user-ID as key and the full
31:             * username as label.
32:             * @see vqwiki.servlets.beans.SelectorBean
33:             */
34:            public abstract List getListOfAllUsers();
35:
36:            /**
37:             * Get the full name of an user by its user-ID
38:             * @param uid The user-ID of this user
39:             * @return The full name of this user
40:             */
41:            public abstract String getFullnameById(String uid);
42:
43:            /**
44:             * Get the email address of an user by its user-ID
45:             * @param uid The user-ID of this user
46:             * @return The email address of this user
47:             */
48:            public abstract String getKnownEmailById(String user);
49:
50:            /**
51:             * Get the user details of this user by its user-ID. The user details is a string, which is
52:             * set in the admin section. It contains some placeholders, which are replaced by values from
53:             * the user repository
54:             * @param uid The user-ID of this user
55:             * @return The user details section
56:             */
57:            public abstract String getUserDetails(String uid);
58:
59:            /**
60:             * Contains the repository valid (already confirmed) email addresses?
61:             * If yes, then we can skip the registration process and the user is automatically registered.
62:             * @return true, if so. false otherwise.
63:             */
64:            public boolean isEmailValidated() {
65:                return false;
66:            }
67:
68:        }
69:        /*
70:         * Log:
71:         *
72:         * $Log$
73:         * Revision 1.2  2006/04/20 00:14:40  wrh2
74:         * Coding style updates (VQW-73).
75:         *
76:         * Revision 1.1  2004/06/28 09:37:19  mrgadget4711
77:         * Classes for User groups
78:         *
79:         * ------------END------------
80:         */
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.