2 - Basic LDAP API usage (…)
Each LDAP operations are requests that may get a response (except the Abandon or Unbind requests).
Some request though may get more than one response, like the Search operation (which may get one or more SearchResult Entry, SearchResultReference and SearchResultDone).
Last, not least, in specific cases an IntermediateResponse may be sent as a reponse to an ExtendedRequest (which will receive an ExtendedResponse at some point later).
We will explain some of the most used operations in this chapter.
Contents
- 2.1 - Connection and disconnection
- 2.2 - Binding and unbinding (…)
- 2.3 - Searching (…)
- 2.4 - Adding entries
- 2.5 - Deleting entries
- 2.6 - Modifying entries
- 2.7 - Moving an renaming entries (e)
- 2.8 - Comparing entries (e)
- 2.9 - Exception management (…)
- 2.10 - The LdapConnectionTemplate
- 2.11 - The FilterBuilder