Uses of Interface
org.ldaptive.Result
-
-
Uses of Result in org.ldaptive
Classes in org.ldaptive with type parameters of type Result Modifier and Type Class Description class
AbstractOperation<Q extends Request,S extends Result>
Base class for operations.class
AbstractOperationConnectionValidator<Q extends Request,S extends Result>
Base class for validators that use an operation to perform validation.protected static class
AbstractOperationConnectionValidator.AbstractBuilder<Q extends Request,S extends Result,B,T extends AbstractOperationConnectionValidator<Q,S>>
Base class for operation validator builders.interface
Operation<Q extends Request,S extends Result>
Operation interface.interface
OperationHandle<Q extends Request,S extends Result>
Handle that notifies on the components of an LDAP operation request.Classes in org.ldaptive that implement Result Modifier and Type Class Description class
AbstractResult
LDAP result message defined as:class
AddResponse
LDAP add response defined as:class
BindResponse
LDAP bind response defined as:class
CompareResponse
LDAP compare response defined as:class
DeleteResponse
LDAP delete response defined as:class
ModifyDnResponse
LDAP modify DN response defined as:class
ModifyResponse
LDAP modify response defined as:class
SearchResponse
Response that encapsulates the result elements of a search request.Methods in org.ldaptive with type parameters of type Result Modifier and Type Method Description protected <T extends Result>
voidAbstractResult. copyValues(T result)
Copies the property values from the supplied result to this result.Methods in org.ldaptive that return Result Modifier and Type Method Description Result
BindConnectionInitializer. initialize(Connection c)
Result
ConnectionInitializer. initialize(Connection conn)
Initialize the supplied connection.Methods in org.ldaptive with parameters of type Result Modifier and Type Method Description protected static String
LdapException. formatResult(Result result)
Formats the supplied result for use as an exception message.Constructors in org.ldaptive with parameters of type Result Constructor Description LdapException(Result result)
Creates a new ldap exception based on the supplied result. -
Uses of Result in org.ldaptive.ad.control.util
Fields in org.ldaptive.ad.control.util declared as Result Modifier and Type Field Description private Result
NotificationClient.NotificationItem. searchResult
Result contained in this notification item.Methods in org.ldaptive.ad.control.util that return Result Modifier and Type Method Description Result
NotificationClient.NotificationItem. getResult()
Returns the response contained in this item or null if this item does not contain a response.Constructors in org.ldaptive.ad.control.util with parameters of type Result Constructor Description NotificationItem(Result result)
Creates a new notification item. -
Uses of Result in org.ldaptive.ad.extended
Methods in org.ldaptive.ad.extended that return Result Modifier and Type Method Description Result
FastBindConnectionInitializer. initialize(Connection c)
-
Uses of Result in org.ldaptive.auth
Classes in org.ldaptive.auth that implement Result Modifier and Type Class Description class
AuthenticationHandlerResponse
Response object for authentication handlers.class
AuthenticationResponse
Synthetic response object that encapsulates data used for authentication. -
Uses of Result in org.ldaptive.beans.persistence
Methods in org.ldaptive.beans.persistence that return Result Modifier and Type Method Description Result
DefaultLdapEntryManager. merge(T object)
Result
DefaultLdapEntryManager. merge(T object, ResultPredicate predicate)
Merges the supplied annotated object in an LDAP.Result
LdapEntryManager. merge(T object)
Merges the supplied annotated object in an LDAP. -
Uses of Result in org.ldaptive.concurrent
Classes in org.ldaptive.concurrent with type parameters of type Result Modifier and Type Class Description class
AbstractOperationWorker<T extends Operation<Q,S>,Q extends Request,S extends Result>
Base class for worker operations.interface
OperationWorker<Q extends Request,S extends Result>
Interface for ldap operation workers. -
Uses of Result in org.ldaptive.control.util
Fields in org.ldaptive.control.util with type parameters of type Result Modifier and Type Field Description private Consumer<Result>
PersistentSearchClient. onResult
Invoked when a result is received.private Consumer<Result>
SyncReplClient. onResult
Invoked when a result is received.private Consumer<Result>
SyncReplRunner. onResult
Invoked when a result is received.Method parameters in org.ldaptive.control.util with type arguments of type Result Modifier and Type Method Description void
PersistentSearchClient. setOnResult(Consumer<Result> consumer)
Sets the onResult consumer.void
SyncReplClient. setOnResult(Consumer<Result> consumer)
Sets the onResult consumer.void
SyncReplRunner. setOnResult(Consumer<Result> consumer)
Sets the onResult consumer. -
Uses of Result in org.ldaptive.ext
Methods in org.ldaptive.ext that return Result Modifier and Type Method Description protected Result
MergeOperation. add(MergeRequest request, LdapEntry entry)
Executes anAddOperation
for the supplied entry.protected Result
MergeOperation. delete(MergeRequest request, LdapEntry entry)
Executes aDeleteOperation
for the supplied entry.Result
MergeOperation. execute(MergeRequest request)
Executes a merge request.protected Result
MergeOperation. modify(MergeRequest request, LdapEntry source, LdapEntry target)
Retrieves the attribute modifications fromLdapEntry.computeModifications(LdapEntry, LdapEntry)
and executes aModifyOperation
with those results. -
Uses of Result in org.ldaptive.extended
Classes in org.ldaptive.extended that implement Result Modifier and Type Class Description class
ExtendedResponse
LDAP extended response defined as:class
NoticeOfDisconnection
LDAP notice of disconnection defined as:class
UnsolicitedNotification
LDAP unsolicited notification defined as: -
Uses of Result in org.ldaptive.handler
Methods in org.ldaptive.handler with parameters of type Result Modifier and Type Method Description default void
ResultPredicate. testAndThrow(Result result)
Test a result and throw if the test succeeds. -
Uses of Result in org.ldaptive.referral
Classes in org.ldaptive.referral with type parameters of type Result Modifier and Type Class Description class
AbstractFollowReferralHandler<Q extends Request,S extends Result>
Common implementation of referral handling. -
Uses of Result in org.ldaptive.transport
Classes in org.ldaptive.transport with type parameters of type Result Modifier and Type Class Description class
DefaultOperationHandle<Q extends Request,S extends Result>
Handle that notifies on the components of an LDAP operation request.class
MessageFunctional<Q extends Request,S extends Result>
Base class for processing a message that is initialized with the request and connection.static class
MessageFunctional.BiConsumer<Q extends Request,S extends Result,T,U>
Marker class to inject connection and request properties.static class
MessageFunctional.Consumer<Q extends Request,S extends Result,T>
Marker class to inject connection and request properties.static class
MessageFunctional.Function<Q extends Request,S extends Result,T,R>
Marker class to inject connection and request properties.Fields in org.ldaptive.transport declared as Result Modifier and Type Field Description private S
DefaultOperationHandle. result
Protocol response result.Methods in org.ldaptive.transport with parameters of type Result Modifier and Type Method Description private boolean
DefaultOperationHandle. supports(Result r)
Whether the supplied result belongs to this handle. -
Uses of Result in org.ldaptive.transport.netty
Methods in org.ldaptive.transport.netty that return Result Modifier and Type Method Description (package private) Result
NettyConnection. operation(StartTLSRequest request)
Performs a startTLS operation.
-