Java Doc for DatabaseUsers.java in  » Web-Framework » rife-1.6.1 » com » uwyn » rife » authentication » credentialsmanagers » 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 » Web Framework » rife 1.6.1 » com.uwyn.rife.authentication.credentialsmanagers 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.uwyn.rife.database.DbQueryManager
      com.uwyn.rife.authentication.credentialsmanagers.DatabaseUsers

All known Subclasses:   com.uwyn.rife.authentication.credentialsmanagers.databasedrivers.generic,
DatabaseUsers
abstract public class DatabaseUsers extends DbQueryManager implements CredentialsManager,RoleUsersManager,PasswordEncrypting(Code)

Inner Class :protected class RoleFetcher extends DbRowProcessor
Inner Class :protected class ProcessVerifyCredentials extends DbRowProcessor
Inner Class :protected static class ListDatabaseRoles extends DbRowProcessor
Inner Class :protected static class ListDatabaseUsers extends DbRowProcessor

Field Summary
protected  StringEncryptormPasswordEncryptor
    

Constructor Summary
protected  DatabaseUsers(Datasource datasource)
    

Method Summary
protected  void_addRole(SequenceValue getRoleId, Insert addRole, String role)
    
protected  void_addUser(Insert addUserWithId, Select getFreeUserId, Select getRoleId, Insert addRoleLink, String login, RoleUserAttributes attributes)
    
protected  void_clearUsers(Delete clearUsers)
    
protected  boolean_containsRole(Select containsRole, String role)
    
protected  boolean_containsUser(Select containsUser, String login)
    
protected  long_countRoles(Select countRoles)
    
protected  long_countUsers(Select countUsers)
    
protected  RoleUserAttributes_getAttributes(Select getAttributes, Select getUserRoles, String login)
    
protected  String_getLogin(Select getLogin, long userId)
    
protected  long_getUserId(Select getUserId, String login)
    
protected  boolean_install(CreateSequence createSequenceRole, CreateTable createTableRole, CreateTable createTableUser, CreateTable createTableRoleLink)
    
protected  boolean_isUserInRole(Select isUserInRole, long userId, String role)
    
protected  boolean_listRoles(Select listRolesQuery, ListRoles processor)
    
protected  boolean_listUserRoles(Select listUserRolesQuery, String login, ListRoles processor)
    
protected  boolean_listUsers(Select listUsersQuery, ListUsers processor)
    
protected  boolean_listUsers(Select listUsersRangedQuery, ListUsers processor, int limit, int offset)
    
protected  boolean_listUsersInRole(Select listUsersInRole, ListUsers processor, String role)
    
protected  boolean_remove(DropSequence dropSequenceRole, DropTable dropTableRole, DropTable dropTableUser, DropTable dropTableRoleLink)
    
protected  boolean_removeRole(Delete removeRole, String name)
    
protected  boolean_removeUser(Delete removeUserByLogin, String login)
    
protected  boolean_removeUser(Delete removeUserByUserId, long userId)
    
protected  boolean_updateUser(Update updateUser, Delete removeRoleLinksByUser, Select getRoleId, Insert addRoleLink, String login, RoleUserAttributes attributes)
    
protected  long_verifyCredentials(Select verifyCredentialsNoRole, Select verifyCredentialsRole, Credentials credentials)
    
public  StringEncryptorgetPasswordEncryptor()
    
abstract public  booleaninstall()
    
abstract public  booleanremove()
    
public  voidsetPasswordEncryptor(StringEncryptor passwordEncryptor)
    

Field Detail
mPasswordEncryptor
protected StringEncryptor mPasswordEncryptor(Code)




Constructor Detail
DatabaseUsers
protected DatabaseUsers(Datasource datasource)(Code)




Method Detail
_addRole
protected void _addRole(SequenceValue getRoleId, Insert addRole, String role) throws CredentialsManagerException(Code)



_addUser
protected void _addUser(Insert addUserWithId, Select getFreeUserId, Select getRoleId, Insert addRoleLink, String login, RoleUserAttributes attributes) throws CredentialsManagerException(Code)



_clearUsers
protected void _clearUsers(Delete clearUsers) throws CredentialsManagerException(Code)



_containsRole
protected boolean _containsRole(Select containsRole, String role) throws CredentialsManagerException(Code)



_containsUser
protected boolean _containsUser(Select containsUser, String login) throws CredentialsManagerException(Code)



_countRoles
protected long _countRoles(Select countRoles) throws CredentialsManagerException(Code)



_countUsers
protected long _countUsers(Select countUsers) throws CredentialsManagerException(Code)



_getAttributes
protected RoleUserAttributes _getAttributes(Select getAttributes, Select getUserRoles, String login) throws CredentialsManagerException(Code)



_getLogin
protected String _getLogin(Select getLogin, long userId) throws CredentialsManagerException(Code)



_getUserId
protected long _getUserId(Select getUserId, String login) throws CredentialsManagerException(Code)



_install
protected boolean _install(CreateSequence createSequenceRole, CreateTable createTableRole, CreateTable createTableUser, CreateTable createTableRoleLink) throws CredentialsManagerException(Code)



_isUserInRole
protected boolean _isUserInRole(Select isUserInRole, long userId, String role) throws CredentialsManagerException(Code)



_listRoles
protected boolean _listRoles(Select listRolesQuery, ListRoles processor) throws CredentialsManagerException(Code)



_listUserRoles
protected boolean _listUserRoles(Select listUserRolesQuery, String login, ListRoles processor) throws CredentialsManagerException(Code)



_listUsers
protected boolean _listUsers(Select listUsersQuery, ListUsers processor) throws CredentialsManagerException(Code)



_listUsers
protected boolean _listUsers(Select listUsersRangedQuery, ListUsers processor, int limit, int offset) throws CredentialsManagerException(Code)



_listUsersInRole
protected boolean _listUsersInRole(Select listUsersInRole, ListUsers processor, String role) throws CredentialsManagerException(Code)



_remove
protected boolean _remove(DropSequence dropSequenceRole, DropTable dropTableRole, DropTable dropTableUser, DropTable dropTableRoleLink) throws CredentialsManagerException(Code)



_removeRole
protected boolean _removeRole(Delete removeRole, String name) throws CredentialsManagerException(Code)



_removeUser
protected boolean _removeUser(Delete removeUserByLogin, String login) throws CredentialsManagerException(Code)



_removeUser
protected boolean _removeUser(Delete removeUserByUserId, long userId) throws CredentialsManagerException(Code)



_updateUser
protected boolean _updateUser(Update updateUser, Delete removeRoleLinksByUser, Select getRoleId, Insert addRoleLink, String login, RoleUserAttributes attributes) throws CredentialsManagerException(Code)



_verifyCredentials
protected long _verifyCredentials(Select verifyCredentialsNoRole, Select verifyCredentialsRole, Credentials credentials) throws CredentialsManagerException(Code)



getPasswordEncryptor
public StringEncryptor getPasswordEncryptor()(Code)



install
abstract public boolean install() throws CredentialsManagerException(Code)



remove
abstract public boolean remove() throws CredentialsManagerException(Code)



setPasswordEncryptor
public void setPasswordEncryptor(StringEncryptor passwordEncryptor)(Code)



Methods inherited from com.uwyn.rife.database.DbQueryManager
public Object clone()(Code)(Java Doc)
public boolean executeFetchAll(ReadQuery query, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchAll(ReadQuery query, DbRowProcessor rowProcessor, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public List<BeanType> executeFetchAllBeans(ReadQuery query, Class<BeanType> beanClass) throws DatabaseException(Code)(Java Doc)
public List<BeanType> executeFetchAllBeans(ReadQuery query, Class<BeanType> beanClass, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchFirst(ReadQuery query, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchFirst(ReadQuery query, DbRowProcessor rowProcessor, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public BeanType executeFetchFirstBean(ReadQuery query, Class<BeanType> beanClass) throws DatabaseException(Code)(Java Doc)
public BeanType executeFetchFirstBean(ReadQuery query, Class<BeanType> beanClass, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeGetFirstBoolean(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public boolean executeGetFirstBoolean(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public byte executeGetFirstByte(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public byte executeGetFirstByte(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public byte[] executeGetFirstBytes(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public byte[] executeGetFirstBytes(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public double executeGetFirstDouble(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public double executeGetFirstDouble(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public float executeGetFirstFloat(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public float executeGetFirstFloat(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public int executeGetFirstInt(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public int executeGetFirstInt(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public long executeGetFirstLong(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public long executeGetFirstLong(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public short executeGetFirstShort(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public short executeGetFirstShort(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public String executeGetFirstString(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public String executeGetFirstString(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeHasResultRows(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public boolean executeHasResultRows(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeQuery(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeQuery(ReadQuery query, DbResultSetHandler handler) throws DatabaseException(Code)(Java Doc)
public DbStatement executeQuery(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(String sql) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(Query query) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(Query query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeUseFirstAsciiStream(ReadQuery query, InputStreamUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstAsciiStream(ReadQuery query, InputStreamUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstBinaryStream(ReadQuery query, InputStreamUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstBinaryStream(ReadQuery query, InputStreamUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstCharacterStream(ReadQuery query, ReaderUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstCharacterStream(ReadQuery query, ReaderUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public boolean fetch(ResultSet resultSet) throws DatabaseException(Code)(Java Doc)
public boolean fetch(ResultSet resultSet, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean fetchAll(ResultSet resultSet, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public DbConnection getConnection() throws DatabaseException(Code)(Java Doc)
public Datasource getDatasource()(Code)(Java Doc)
public ResultType inTransaction(DbTransactionUser user) throws InnerClassException, DatabaseException(Code)(Java Doc)
public ResultType reserveConnection(DbConnectionUser user) throws InnerClassException, DatabaseException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.