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.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeDeleteRequest(int messageID,
DeleteRequest request)
Writes the provided delete request.
|
Modifier and Type | Method and Description |
---|---|
default io.reactivex.Single<Result> |
LdapClientSocket.delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.
|
Result |
Connection.delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete
request.
|
Result |
AbstractConnectionWrapper.delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete
request.
|
Result |
AbstractAsynchronousConnection.delete(DeleteRequest request) |
LdapPromise<Result> |
Connection.deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the
provided delete request.
|
LdapPromise<Result> |
AbstractConnectionWrapper.deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the
provided delete request.
|
LdapPromise<Result> |
AbstractConnection.deleteAsync(DeleteRequest request) |
LdapPromise<Result> |
Connection.deleteAsync(DeleteRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the
provided delete request.
|
LdapPromise<Result> |
AbstractSynchronousConnection.deleteAsync(DeleteRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
LdapPromise<Result> |
AbstractConnectionWrapper.deleteAsync(DeleteRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the
provided delete request.
|
Modifier and Type | Method and Description |
---|---|
DeleteRequest |
DeleteRequest.addControl(Control control) |
DeleteRequest |
DeleteRequest.addControls(Iterable<? extends Control> controls) |
static DeleteRequest |
Requests.copyOfDeleteRequest(DeleteRequest request)
Creates a new delete request that is an exact copy of the provided
request.
|
static DeleteRequest |
Requests.newDeleteRequest(Dn name)
Creates a new delete request using the provided distinguished name.
|
static DeleteRequest |
Requests.newDeleteRequest(String name)
Creates a new delete request using the provided distinguished name
decoded using the default schema.
|
DeleteRequest |
DeleteRequest.setName(Dn dn)
Sets the distinguished name of the entry to be deleted.
|
DeleteRequest |
DeleteRequest.setName(String dn)
Sets the distinguished name of the entry to be deleted.
|
static DeleteRequest |
Requests.unmodifiableDeleteRequest(DeleteRequest request)
Creates an unmodifiable delete request of the provided request.
|
Modifier and Type | Method and Description |
---|---|
static DeleteRequest |
Requests.copyOfDeleteRequest(DeleteRequest request)
Creates a new delete request that is an exact copy of the provided
request.
|
static DeleteRequest |
Requests.unmodifiableDeleteRequest(DeleteRequest request)
Creates an unmodifiable delete request of the provided request.
|
R |
RequestVisitor.visitRequest(P p,
DeleteRequest request)
Visits an
Delete request. |
R |
AbstractRequestVisitor.visitRequest(P p,
DeleteRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
RejectedChangeRecordListener.handleRejectedChangeRecord(DeleteRequest change,
org.forgerock.i18n.LocalizableMessage reason)
Invoked when an attempt to delete an entry was rejected.
|
abstract R |
ChangeRecordVisitor.visitRequest(P p,
DeleteRequest request) |
LdifChangeRecordWriter |
LdifChangeRecordWriter.writeChangeRecord(DeleteRequest change) |
ConnectionChangeRecordWriter |
ConnectionChangeRecordWriter.writeChangeRecord(DeleteRequest change)
Writes the provided Delete request to the underlying connection, blocking
until the request completes.
|
ChangeRecordWriter |
ChangeRecordWriter.writeChangeRecord(DeleteRequest change)
Writes a
Delete change record. |
Copyright © 2010-2018, ForgeRock All Rights Reserved.