com.sun.jndi.ldap

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 » 6.0 JDK Modules com.sun » jndi » com.sun.jndi.ldap 
com.sun.jndi.ldap
Java Source File NameTypeComment
BasicControl.javaClass This class provides a basic implementation of the Control interface.
Ber.javaClass Base class that defines common fields, constants, and debug method.
BerDecoder.javaClass A BER decoder.
BerEncoder.javaClass A BER encoder.
BindingWithControls.javaClass
ClientId.javaClass Represents identity information about an anonymous LDAP connection. This base class contains the following information: - protocol version number - server's hostname (case-insensitive) - server's port number - prototype type (plain or ssl) - controls to be sent with the LDAP bind request All other identity classes must be a subclass of ClientId. Identity subclasses would add more distinguishing information, depending on the type of authentication that the connection is to have. The equals() and hashCode() methods of this class and its subclasses are important because they are used to determine whether two requests for the same connection are identical, and thus whether the same connection may be shared.
Connection.javaClass A thread that creates a connection to an LDAP server. After the connection, the thread reads from the connection. A caller can invoke methods on the instance to read LDAP responses and to send LDAP requests.

There is a one-to-one correspondence between an LdapClient and a Connection.

DefaultResponseControlFactory.javaClass This class represents a factory for creating LDAPv3 response controls.
DigestClientId.javaClass Extends SimpleClientId to add property values specific for Digest-MD5.
EntryChangeResponseControl.javaClass This class implements the LDAPv3 Response Control for entry-change notification as defined in draft-ietf-ldapext-psearch-02.txt. The control's value has the following ASN.1 definition:
 EntryChangeNotification ::= SEQUENCE {
 changeType ENUMERATED {
 add              (1),
 delete           (2),
 modify           (4),
 modDN            (8)
 },
 previousDN   LDAPDN OPTIONAL,        -- modifyDN ops.
EventQueue.javaClass Package private class used by EventSupport to dispatch events.
EventSupport.javaClass This is a utility class that can be used by a context that supports event notification.
Filter.javaClass LDAP (RFC-1960) and LDAPv3 (RFC-2254) search filters.
LdapAttribute.javaClass This subclass is used by LDAP to implement the schema calls.
LdapBindingEnumeration.javaClass
LdapClient.javaClass LDAP (RFC-1777) and LDAPv3 (RFC-2251) compliant client This class represents a connection to an LDAP client. Callers interact with this class at an LDAP operation level. That is, the caller invokes a method to do a SEARCH or MODRDN operation and gets back the result.
LdapClientFactory.javaClass Creates an LdapClient.
LdapCtx.javaClass The LDAP context implementation. Implementation is not thread-safe.
LdapCtxFactory.javaClass
LdapEntry.javaClass A holder for an LDAP entry read from an LDAP server.
LdapName.javaClass LdapName implements compound names for LDAP v3 as specified by RFC 2253.

RFC 2253 has a few ambiguities and outright inconsistencies.

LdapNameParser.javaClass
LdapNamingEnumeration.javaClass Basic enumeration for NameClassPair, Binding, and SearchResults.
LdapPoolManager.javaClass Contains utilities for managing connection pools of LdapClient.
LdapReferralContext.javaClass A context for handling referrals.
LdapReferralException.javaClass This exception is raised when a referral to an alternative context is encountered.

An LdapReferralException object contains one or more referrals. Each referral is an alternative location for the same target entry. For example, a referral may be an LDAP URL. The referrals are attempted in sequence until one is successful or all have failed.

LdapRequest.javaClass
LdapResult.javaClass
LdapSchemaCtx.javaClass This is the class used to implement LDAP's GetSchema call. It subclasses HierMemDirContext for most of the functionality.
LdapSchemaParser.javaClass Netscape's 3.1 servers have some schema bugs: - It puts quotes around OIDs (such as those for SUP, SYNTAX).
LdapSearchEnumeration.javaClass
LdapURL.javaClass
ManageReferralControl.javaClass This class implements the LDAPv3 Request Control for manageDsaIT as defined in draft-ietf-ldapext-namedref-00.txt.
NameClassPairWithControls.javaClass
NamingEventNotifier.javaClass Gathers information to generate events by using the Persistent Search control.

This class maintains a list of listeners all interested in the same "search" request.

NotifierArgs.javaClass This class holds the information in an event registration/deregistration request.
Obj.javaClass Class containing static methods and constants for dealing with encoding/decoding JNDI References and Serialized Objects in LDAP.
PersistentSearchControl.javaClass This class implements the LDAPv3 Request Control for the persistent search mechanism as defined in draft-ietf-ldapext-psearch-02.txt.
ReferralEnumeration.javaInterface
SearchResultWithControls.javaClass
ServiceLocator.javaClass This class discovers the location of LDAP services by querying DNS.
SimpleClientId.javaClass Represents the identity of a 'simple' authenticated LDAP connection.
UnsolicitedResponseImpl.javaClass A concrete implementation of an UnsolicitedNotification.
VersionHelper.javaClass
VersionHelper12.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.