Directory and LDAP Packages

Directory Package

The package extends the package to provide functionality for accessing directory services in addition to naming services. This package allows applications to retrieve associated with objects stored in the directory and to search for objects using specified attributes.

The Directory Context

The interface represents a directory context. DirContext also behaves as a naming context by extending the interface. This means that any directory object can also provide a naming context. It defines methods for examining and updating attributes associated with a directory entry.

Attributes
You use method to retrieve the attributes associated with a directory entry (for which you supply the name). Attributes are modified using method. You can add, replace, or remove attributes and/or attribute values using this operation.
Searches
DirContext contains methods for performing content based searching of the directory. In the simplest and most common form of usage, the application specifies a set of attributes possibly with specific values to match and submits this attribute set to the method. Other overloaded forms of support more sophisticated search filters.

LDAP Package

The package contains classes and interfaces for using features that are specific to the that are not already covered by the more generic package. In fact, most JNDI applications that use the LDAP will find the javax.naming.directory package sufficient and will not need to use the javax.naming.ldap package at all. This package is primarily for those applications that need to use "extended" operations, controls, or unsolicited notifications.

"Extended" Operation
In addition to specifying well defined operations such as search and modify, the specifies a way to transmit yet-to-be defined operations between the LDAP client and the server. These operations are called "extended" operations. An "extended" operation may be defined by a standards organization such as the Internet Engineering Task Force (IETF) or by a vendor.
Controls
The allows any request or response to be augmented by yet-to-be defined modifiers, called controls . A control sent with a request is a request control and a control sent with a response is a response control . A control may be defined by a standards organization such as the IETF or by a vendor. Request controls and response controls are not necessarily paired, that is, there need not be a response control for each request control sent, and vice versa.
Unsolicited Notifications
In addition to the normal request/response style of interaction between the client and server, the also specifies unsolicited notifications--messages that are sent from the server to the client asynchronously and not in response to any client request.

The LDAP Context

The interface represents a context for performing "extended" operations, sending request controls, and receiving response controls. Examples of how to use these features are described in the JNDI Tutorial's Controls and Extensions lesson.