Package | Description |
---|---|
org.forgerock.opendj.io |
Classes and interfaces providing I/O functionality.
|
org.forgerock.opendj.ldap |
Classes and interfaces for core types including connections, entries, and
attributes.
|
org.forgerock.opendj.ldap.messages |
Classes and interfaces for core LDAP requests/responses.
|
org.forgerock.opendj.ldif |
Classes and interfaces for reading and writing LDIF.
|
org.opends.server.api |
Contains a number of API declarations for use throughout the
Directory Server.
|
org.opends.server.api.plugin |
Defines the Directory Server plugin API.
|
org.opends.server.authorization.dseecompat |
Contains the Directory Server Sun Java System Directory Server Enterprise Edition (dseecompat) compatability access
control handler implementation.
|
org.opends.server.core |
Contains various classes that comprise the core of the Directory Server codebase.
|
org.opends.server.protocols.jmx |
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using JMX.
|
org.opends.server.protocols.ldap |
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using LDAPv3.
|
org.opends.server.replication.plugin |
This package contains the part of the Multi-master
replication code that works on the Directory Server side.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeSearchResultEntry(int messageID,
SearchResultEntry entry)
Writes the provided search result entry.
|
Modifier and Type | Method and Description |
---|---|
SearchResultEntry |
Connection.readEntry(Dn name,
String... attributeDescriptions)
Reads the named entry from the Directory Server.
|
SearchResultEntry |
AbstractConnectionWrapper.readEntry(Dn name,
String... attributeDescriptions)
Reads the named entry from the Directory Server.
|
SearchResultEntry |
AbstractConnection.readEntry(Dn baseObject,
String... attributeDescriptions) |
SearchResultEntry |
Connection.readEntry(String name,
String... attributeDescriptions)
Reads the named entry from the Directory Server.
|
SearchResultEntry |
AbstractConnectionWrapper.readEntry(String name,
String... attributeDescriptions)
Reads the named entry from the Directory Server.
|
SearchResultEntry |
AbstractConnection.readEntry(String baseObject,
String... attributeDescriptions) |
SearchResultEntry |
Connection.searchSingleEntry(SearchRequest request)
Searches the Directory Server for a single entry using the provided
search request.
|
SearchResultEntry |
AbstractConnectionWrapper.searchSingleEntry(SearchRequest request)
Searches the Directory Server for a single entry using the provided
search request.
|
SearchResultEntry |
AbstractConnection.searchSingleEntry(SearchRequest request) |
SearchResultEntry |
Connection.searchSingleEntry(String baseObject,
SearchScope scope,
String filter,
String... attributeDescriptions)
Searches the Directory Server for a single entry using the provided
search parameters.
|
SearchResultEntry |
AbstractConnectionWrapper.searchSingleEntry(String baseObject,
SearchScope scope,
String filter,
String... attributeDescriptions)
Searches the Directory Server for a single entry using the provided
search parameters.
|
SearchResultEntry |
AbstractConnection.searchSingleEntry(String baseObject,
SearchScope scope,
String filter,
String... attributeDescriptions) |
Modifier and Type | Method and Description |
---|---|
default Single<SearchResultEntry> |
LdapClientSocket.readEntry(Dn name,
String... attributeDescriptions)
Reads the named entry from the Directory Server.
|
LdapPromise<SearchResultEntry> |
Connection.readEntryAsync(Dn name,
Collection<String> attributeDescriptions)
Asynchronously reads the named entry from the Directory Server.
|
LdapPromise<SearchResultEntry> |
AbstractConnectionWrapper.readEntryAsync(Dn name,
Collection<String> attributeDescriptions)
Asynchronously reads the named entry from the Directory Server.
|
LdapPromise<SearchResultEntry> |
AbstractConnection.readEntryAsync(Dn name,
Collection<String> attributeDescriptions) |
default Flowable<SearchResultEntry> |
LdapClientSocket.search(SearchRequest request)
Searches the Directory Server using the provided search request.
|
default Single<SearchResultEntry> |
LdapClientSocket.searchSingleEntry(SearchRequest request)
Searches the Directory Server for a single entry using the provided search request.
|
LdapPromise<SearchResultEntry> |
Connection.searchSingleEntryAsync(SearchRequest request)
Asynchronously searches the Directory Server for a single entry using the
provided search request.
|
LdapPromise<SearchResultEntry> |
AbstractConnectionWrapper.searchSingleEntryAsync(SearchRequest request)
Asynchronously searches the Directory Server for a single entry using the
provided search request.
|
LdapPromise<SearchResultEntry> |
AbstractConnection.searchSingleEntryAsync(SearchRequest request) |
Modifier and Type | Method and Description |
---|---|
boolean |
SearchResultHandler.handleEntry(SearchResultEntry entry)
Invoked each time a search result entry is returned from an asynchronous
search operation.
|
Modifier and Type | Method and Description |
---|---|
Result |
Connection.search(SearchRequest request,
Collection<? super SearchResultEntry> entries)
Searches the Directory Server using the provided search request.
|
Result |
AbstractConnectionWrapper.search(SearchRequest request,
Collection<? super SearchResultEntry> entries)
Searches the Directory Server using the provided search request.
|
Result |
AbstractConnection.search(SearchRequest request,
Collection<? super SearchResultEntry> entries) |
Result |
Connection.search(SearchRequest request,
Collection<? super SearchResultEntry> entries,
Collection<? super SearchResultReference> references)
Searches the Directory Server using the provided search request.
|
Result |
AbstractConnectionWrapper.search(SearchRequest request,
Collection<? super SearchResultEntry> entries,
Collection<? super SearchResultReference> references)
Searches the Directory Server using the provided search request.
|
Result |
AbstractConnection.search(SearchRequest request,
Collection<? super SearchResultEntry> entries,
Collection<? super SearchResultReference> references) |
Modifier and Type | Method and Description |
---|---|
SearchResultEntry |
SearchResultEntry.addAttribute(String attributeDescription,
Object... values) |
SearchResultEntry |
SearchResultEntry.addControl(Control control) |
SearchResultEntry |
SearchResultEntry.addControls(Iterable<? extends Control> controls) |
SearchResultEntry |
SearchResultEntry.clearAttributes() |
static SearchResultEntry |
Responses.copyOfSearchResultEntry(SearchResultEntry entry)
Creates a new search result entry that is an exact copy of the provided
result.
|
static SearchResultEntry |
Responses.newSearchResultEntry(Dn name)
Creates a new search result entry using the provided distinguished name.
|
static SearchResultEntry |
Responses.newSearchResultEntry(Entry entry)
Creates a new search result entry backed by the provided entry.
|
static SearchResultEntry |
Responses.newSearchResultEntry(String... ldifLines)
Creates a new search result entry using the provided lines of LDIF
decoded using the default schema.
|
static SearchResultEntry |
Responses.newSearchResultEntry(String name)
Creates a new search result entry using the provided distinguished name
decoded using the default schema.
|
SearchResultEntry |
SearchResultEntry.removeAttribute(String attributeDescription,
Object... values) |
SearchResultEntry |
SearchResultEntry.replaceAttribute(String attributeDescription,
Object... values) |
SearchResultEntry |
SearchResultEntry.setName(Dn dn) |
SearchResultEntry |
SearchResultEntry.setName(String dn) |
static SearchResultEntry |
Responses.unmodifiableSearchResultEntry(SearchResultEntry entry)
Creates an unmodifiable search result entry using the provided response.
|
Modifier and Type | Method and Description |
---|---|
static SearchResultEntry |
Responses.copyOfSearchResultEntry(SearchResultEntry entry)
Creates a new search result entry that is an exact copy of the provided
result.
|
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
SearchResultEntry response)
Builds and returns an
LdapMessage containing a SearchResultEntry . |
static SearchResultEntry |
Responses.unmodifiableSearchResultEntry(SearchResultEntry entry)
Creates an unmodifiable search result entry using the provided response.
|
Modifier and Type | Method and Description |
---|---|
SearchResultEntry |
ConnectionEntryReader.readEntry()
Waits for the next search result entry or reference to become available
and, if it is an entry, returns it as a
SearchResultEntry . |
Modifier and Type | Method and Description |
---|---|
void |
AccessControlHandler.filterEntry(Operation operation,
SearchResultEntry unfilteredEntry,
AttributeFilter attributeFilter)
Filter the contents of the provided entry such that it no longer contains any attributes or values that the
client is not permitted to access.
|
boolean |
AccessControlHandler.maySend(Operation operation,
SearchResultEntry unfilteredEntry)
Indicates whether the provided search result entry may be sent to the client.
|
abstract void |
ClientConnection.sendSearchEntry(SearchOperation searchOperation,
SearchResultEntry searchEntry)
Sends the provided search result entry to the client.
|
Modifier and Type | Method and Description |
---|---|
PluginResult.IntermediateResponse |
DirectoryServerPlugin.processSearchEntry(InProgressSearchOperation searchOperation,
SearchResultEntry searchEntry)
Performs any necessary processing that should be done before a search result entry is sent to a client.
|
Modifier and Type | Method and Description |
---|---|
void |
AciHandler.filterEntry(Operation operation,
SearchResultEntry unfilteredEntry,
AttributeFilter attributeFilter) |
boolean |
AciHandler.maySend(Operation operation,
SearchResultEntry entry) |
Modifier and Type | Method and Description |
---|---|
PluginResult.IntermediateResponse |
PluginConfigManager.invokeSearchResultEntryPlugins(InProgressSearchOperation searchOperation,
SearchResultEntry searchEntry)
Invokes the set of search result entry plugins that have been configured in the Directory Server.
|
void |
SearchOperation.sendSearchEntry(SearchResultEntry entry)
Sends the provided search result entry to the client.
|
Modifier and Type | Method and Description |
---|---|
void |
JmxClientConnection.sendSearchEntry(SearchOperation searchOperation,
SearchResultEntry searchEntry) |
Modifier and Type | Method and Description |
---|---|
void |
LdapClientConnection.sendSearchEntry(SearchOperation searchOperation,
SearchResultEntry searchEntry) |
Modifier and Type | Method and Description |
---|---|
static String |
EntryHistorical.getEntryUUID(SearchResultEntry entry)
Get the entry unique Id in String form.
|
Copyright 2010-2022 ForgeRock AS.