protected OperationHandle<Q,S> |
AbstractOperation.configureHandle(OperationHandle<Q,S> handle) |
Adds configured functions to the supplied handle.
|
OperationHandle<Q,S> |
OperationHandle.onComplete(CompleteHandler function) |
Sets the function to execute when the operation completes.
|
OperationHandle<Q,S> |
OperationHandle.onControl(ResponseControlHandler... function) |
Sets the functions to execute when a control is received.
|
OperationHandle<Q,S> |
OperationHandle.onException(ExceptionHandler function) |
Sets the function to execute when an exception occurs.
|
OperationHandle<Q,S> |
OperationHandle.onIntermediate(IntermediateResponseHandler... function) |
Sets the functions to execute when an intermediate response is received.
|
OperationHandle<Q,S> |
OperationHandle.onReferral(ReferralHandler... function) |
Sets the functions to execute when a referral is received.
|
OperationHandle<Q,S> |
OperationHandle.onResult(ResultHandler... function) |
Sets the functions to execute when a result is received.
|
OperationHandle<Q,S> |
OperationHandle.onUnsolicitedNotification(UnsolicitedNotificationHandler... function) |
Sets the functions to execute when an unsolicited notification is received.
|
OperationHandle<AddRequest,AddResponse> |
Connection.operation(AddRequest request) |
Creates a handle for an add operation.
|
OperationHandle<BindRequest,BindResponse> |
Connection.operation(BindRequest request) |
Creates a handle for a bind operation.
|
OperationHandle<DeleteRequest,DeleteResponse> |
Connection.operation(DeleteRequest request) |
Creates a handle for a delete operation.
|
OperationHandle<ModifyDnRequest,ModifyDnResponse> |
Connection.operation(ModifyDnRequest request) |
Creates a handle for a modify dn operation.
|
OperationHandle<ModifyRequest,ModifyResponse> |
Connection.operation(ModifyRequest request) |
Creates a handle for a modify operation.
|
protected abstract OperationHandle<Q,S> |
AbstractOperationConnectionValidator.performOperation(Connection conn) |
Perform the operation for this validator.
|
protected OperationHandle<CompareRequest,CompareResponse> |
CompareConnectionValidator.performOperation(Connection conn) |
|
protected OperationHandle<SearchRequest,SearchResponse> |
SearchConnectionValidator.performOperation(Connection conn) |
|
OperationHandle<AddRequest,AddResponse> |
AddOperation.send(AddRequest request) |
Sends an add request.
|
static OperationHandle<AddRequest,AddResponse> |
AddOperation.send(ConnectionFactory factory,
AddRequest request) |
Sends an add request.
|
OperationHandle<BindRequest,BindResponse> |
BindOperation.send(BindRequest request) |
Sends a bind request.
|
static OperationHandle<BindRequest,BindResponse> |
BindOperation.send(ConnectionFactory factory,
BindRequest request) |
Sends a bind request.
|
static OperationHandle<DeleteRequest,DeleteResponse> |
DeleteOperation.send(ConnectionFactory factory,
DeleteRequest request) |
Sends a delete request.
|
OperationHandle<DeleteRequest,DeleteResponse> |
DeleteOperation.send(DeleteRequest request) |
Sends a delete request.
|
static OperationHandle<ModifyDnRequest,ModifyDnResponse> |
ModifyDnOperation.send(ConnectionFactory factory,
ModifyDnRequest request) |
Sends a modify DN request.
|
OperationHandle<ModifyDnRequest,ModifyDnResponse> |
ModifyDnOperation.send(ModifyDnRequest request) |
Sends a modify DN request.
|
static OperationHandle<ModifyRequest,ModifyResponse> |
ModifyOperation.send(ConnectionFactory factory,
ModifyRequest request) |
Sends a modify request.
|
OperationHandle<ModifyRequest,ModifyResponse> |
ModifyOperation.send(ModifyRequest request) |
Sends a modify request.
|
OperationHandle<Q,S> |
Operation.send(Q request) |
Sends an asynchronous request and does not wait for a response.
|
OperationHandle<Q,S> |
OperationHandle.send() |
Sends this request to the server.
|
OperationHandle<Q,S> |
OperationHandle.throwIf(ResultPredicate function) |
Sets the function to determine whether an exception should be raised by a particular result.
|