Java Doc for LDAPUser.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » lenya » ac » ldap » 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 » Content Management System » apache lenya 2.0 » org.apache.lenya.ac.ldap 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.lenya.ac.file.FileUser
   org.apache.lenya.ac.ldap.LDAPUser

LDAPUser
public class LDAPUser extends FileUser (Code)
LDAP user.
version:
   $Id: LDAPUser.java 580116 2007-09-27 18:02:21Z rfrovarp $


Field Summary
final public static  StringLDAP_ID
    

Constructor Summary
public  LDAPUser(ItemManager itemManager, Logger logger)
     Creates a new LDAPUser object.
public  LDAPUser(ItemManager itemManager, Logger logger, String id, String email, String _ldapId, Logger _logger)
    

Method Summary
public  booleanauthenticate(String password)
     Authenticate a user against the directory.
public  booleancanChangePassword()
    
public  voidconfigure(Configuration config)
    
protected  ConfigurationcreateConfiguration()
    
public  booleanexistsUser(String _ldapId)
     Checks if a user exists.
Parameters:
  _ldapId - The LDAP id.
public  StringgetLdapId()
    
public  StringgetName()
    
protected  voidinitialize()
     Initializes this user.
protected  voidsetEncryptedPassword(String encryptedPassword)
    
public  voidsetLdapId(String string)
    
public  voidsetName(String string)
     LDAP Users fetch their name information from the LDAP server, so we don't store it locally.
public  voidsetPassword(String plainTextPassword)
    

Field Detail
LDAP_ID
final public static String LDAP_ID(Code)
LDAP_ID The LDAP id




Constructor Detail
LDAPUser
public LDAPUser(ItemManager itemManager, Logger logger)(Code)
Creates a new LDAPUser object.
Parameters:
  itemManager - The item manager.
Parameters:
  logger - The logger.



LDAPUser
public LDAPUser(ItemManager itemManager, Logger logger, String id, String email, String _ldapId, Logger _logger) throws ConfigurationException(Code)
Create an LDAPUser
Parameters:
  itemManager - The item manager.
Parameters:
  logger - The logger.
Parameters:
  id - user id of LDAPUser
Parameters:
  email - of LDAPUser
Parameters:
  _ldapId - of LDAPUser
Parameters:
  _logger - The logger.
throws:
  ConfigurationException - if the properties could not be read




Method Detail
authenticate
public boolean authenticate(String password)(Code)
Authenticate a user against the directory. The principal to be authenticated is either constructed by use of the configured properties, or by lookup of this ID in the directory. This principal then attempts to authenticate against the directory with the provided password.
See Also:   org.apache.lenya.ac.User.authenticate(java.lang.String)



canChangePassword
public boolean canChangePassword()(Code)
The LDAPUser doesn't change any passwords as they are handled by LDAP always returns false



configure
public void configure(Configuration config) throws ConfigurationException(Code)
Create a new LDAPUser from a configuration
Parameters:
  config - the Configuration specifying the userdetails
throws:
  ConfigurationException - if the user could not be instantiated



createConfiguration
protected Configuration createConfiguration()(Code)

See Also:   org.apache.lenya.ac.file.FileUser.createConfiguration



existsUser
public boolean existsUser(String _ldapId) throws AccessControlException(Code)
Checks if a user exists.
Parameters:
  _ldapId - The LDAP id. A boolean value indicating whether the user is found in thedirectory
throws:
  AccessControlException - when an error occurs.



getLdapId
public String getLdapId()(Code)
Get the ldap id the ldap id



getName
public String getName()(Code)

See Also:   org.apache.lenya.ac.Item.getName



initialize
protected void initialize() throws ConfigurationException(Code)
Initializes this user. The current (already authenticated) ldapId is queried in the directory, in order to retrieve additional information, such as the user name. In current implementation, only the user name is actually retrieved, but other attributes may be used in the future (such as groups ?) TODO: should the code be changed to not throw an exception when something goes wrong ? After all, it's only used to get additional info for display? This is a design decision, I'm not sure what's best.
throws:
  ConfigurationException - when something went wrong.



setEncryptedPassword
protected void setEncryptedPassword(String encryptedPassword)(Code)
The LDAPUser doesn't store any passwords as they are handled by LDAP
Parameters:
  encryptedPassword - is ignored



setLdapId
public void setLdapId(String string)(Code)
Set the ldap id
Parameters:
  string - the new ldap id



setName
public void setName(String string)(Code)
LDAP Users fetch their name information from the LDAP server, so we don't store it locally. Since we only have read access we basically can't set the name, i.e. any request to change the name is ignored.
Parameters:
  string - is ignored



setPassword
public void setPassword(String plainTextPassword)(Code)
The LDAPUser doesn't store any passwords as they are handled by LDAP
Parameters:
  plainTextPassword - is ignored



Fields inherited from org.apache.lenya.ac.file.FileUser
final protected static String DOCUMENT_LOCALE(Code)(Java Doc)
final protected static String EMAIL(Code)(Java Doc)
final protected static String GROUP(Code)(Java Doc)
final protected static String GROUPS(Code)(Java Doc)
final protected static String ID(Code)(Java Doc)
final protected static String MENU_LOCALE(Code)(Java Doc)
final protected static String PASSWORD(Code)(Java Doc)
final protected static String PASSWORD_ATTRIBUTE(Code)(Java Doc)

Methods inherited from org.apache.lenya.ac.file.FileUser
public void configure(Configuration config) throws ConfigurationException(Code)(Java Doc)
protected Configuration createConfiguration()(Code)(Java Doc)
public void delete() throws AccessControlException(Code)(Java Doc)
protected File getConfigurationDirectory()(Code)(Java Doc)
protected File getFile()(Code)(Java Doc)
public void save() throws AccessControlException(Code)(Java Doc)
protected void setConfigurationDirectory(File _configurationDirectory)(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.