Uses of Interface
org.ldaptive.Connection
-
Packages that use Connection Package Description org.ldaptive org.ldaptive.ad.extended org.ldaptive.auth org.ldaptive.pool org.ldaptive.transport org.ldaptive.transport.netty -
-
Uses of Connection in org.ldaptive
Fields in org.ldaptive declared as Connection Modifier and Type Field Description private ConnectionSingleConnectionFactory.ConnectionProxy. connUnderlying connection.Fields in org.ldaptive with type parameters of type Connection Modifier and Type Field Description private Predicate<Connection>SingleConnectionFactory. onCloseTo run when a connection is closed.private Consumer<Connection>AbstractConnectionValidator. onFailureConsumer to execute on a failed validation.private Predicate<Connection>SingleConnectionFactory. onOpenTo run when a connection is opened.private Consumer<Connection>AbstractConnectionValidator. onSuccessConsumer to execute on a successful validation.Methods in org.ldaptive that return Connection Modifier and Type Method Description ConnectionPooledConnectionFactory.RetryValidationExceptionHandler. apply(ValidationException e)ConnectionConnectionFactory. getConnection()Creates a new connection.ConnectionDefaultConnectionFactory. getConnection()Creates a new connection.ConnectionPooledConnectionFactory. getConnection()ConnectionSingleConnectionFactory.ConnectionProxy. getConnection()Returns the connection that is being proxied.ConnectionSingleConnectionFactory. getConnection()Methods in org.ldaptive that return types with arguments of type Connection Modifier and Type Method Description Predicate<Connection>SingleConnectionFactory. getOnClose()Returns the function to run when the connection is closed.Consumer<Connection>AbstractConnectionValidator. getOnFailure()Returns a consumer to handle a connection that has failed validation.Predicate<Connection>SingleConnectionFactory. getOnOpen()Returns the function to run when the connection is opened.Consumer<Connection>AbstractConnectionValidator. getOnSuccess()Returns a consumer to handle a connection that has been successfully validated.Methods in org.ldaptive with parameters of type Connection Modifier and Type Method Description voidSingleConnectionFactory.ReinitializeConnectionConsumer. accept(Connection conn)BooleanAbstractConnectionValidator. apply(Connection conn)Supplier<Boolean>AbstractConnectionValidator. applyAsync(Connection conn)voidAbstractOperationConnectionValidator. applyAsync(Connection conn, Consumer<Boolean> function)Supplier<Boolean>ConnectionValidator. applyAsync(Connection conn)Provides an asynchronous implementation ofFunction.apply(Object).voidConnectionValidator. applyAsync(Connection conn, Consumer<Boolean> function)Provides an asynchronous implementation ofFunction.apply(Object).ResultBindConnectionInitializer. initialize(Connection c)ResultConnectionInitializer. initialize(Connection conn)Initialize the supplied connection.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)Method parameters in org.ldaptive with type arguments of type Connection Modifier and Type Method Description SingleConnectionFactory.BuilderSingleConnectionFactory.Builder. onClose(Predicate<Connection> function)BAbstractConnectionValidator.AbstractBuilder. onFailure(Consumer<Connection> consumer)SingleConnectionFactory.BuilderSingleConnectionFactory.Builder. onOpen(Predicate<Connection> function)BAbstractConnectionValidator.AbstractBuilder. onSuccess(Consumer<Connection> consumer)voidSingleConnectionFactory. setOnClose(Predicate<Connection> function)Sets the function to run when the connection is closed.voidAbstractConnectionValidator. setOnFailure(Consumer<Connection> consumer)Sets a consumer to handle a connection that has failed validation.voidSingleConnectionFactory. setOnOpen(Predicate<Connection> function)Sets the function to run when the connection is opened.voidAbstractConnectionValidator. setOnSuccess(Consumer<Connection> consumer)Sets a consumer to handle a connection that has been successfully validated.Constructors in org.ldaptive with parameters of type Connection Constructor Description ConnectionProxy(Connection c)Creates a new connection proxy. -
Uses of Connection in org.ldaptive.ad.extended
Methods in org.ldaptive.ad.extended with parameters of type Connection Modifier and Type Method Description ResultFastBindConnectionInitializer. initialize(Connection c) -
Uses of Connection in org.ldaptive.auth
Fields in org.ldaptive.auth declared as Connection Modifier and Type Field Description private ConnectionAuthenticationHandlerResponse. connectionConnection that authentication occurred on.Methods in org.ldaptive.auth that return Connection Modifier and Type Method Description ConnectionAuthenticationHandlerResponse. getConnection()Methods in org.ldaptive.auth with parameters of type Connection Modifier and Type Method Description protected abstract AuthenticationHandlerResponseAbstractAuthenticationHandler. authenticateInternal(Connection c, AuthenticationCriteria criteria)Authenticate on the supplied connection using the supplied criteria.protected AuthenticationHandlerResponseCompareAuthenticationHandler. authenticateInternal(Connection c, AuthenticationCriteria criteria)protected AuthenticationHandlerResponseSimpleBindAuthenticationHandler. authenticateInternal(Connection c, AuthenticationCriteria criteria)AuthenticationHandlerResponse.BuilderAuthenticationHandlerResponse.Builder. connection(Connection conn)Constructors in org.ldaptive.auth with parameters of type Connection Constructor Description AuthenticationHandlerResponse(T result, AuthenticationResultCode code, Connection conn)Creates a new authentication response. -
Uses of Connection in org.ldaptive.pool
Fields in org.ldaptive.pool declared as Connection Modifier and Type Field Description private ConnectionAbstractConnectionPool.DefaultPooledConnectionProxy. connUnderlying connection.Methods in org.ldaptive.pool that return Connection Modifier and Type Method Description protected ConnectionAbstractConnectionPool. createConnectionProxy(PooledConnectionProxy pc)Creates a connection proxy using the supplied pool connection.ConnectionAbstractConnectionPool.DefaultPooledConnectionProxy. getConnection()abstract ConnectionAbstractConnectionPool. getConnection()Returns a connection from the pool.ConnectionBlockingConnectionPool. getConnection()ConnectionConnectionPool. getConnection()Returns an object from the pool.ConnectionPooledConnectionProxy. getConnection()Returns the connection that is being proxied.Methods in org.ldaptive.pool with parameters of type Connection Modifier and Type Method Description BooleanBindConnectionPassivator. apply(Connection conn)abstract voidAbstractConnectionPool. putConnection(Connection c)Returns a connection to the pool.voidBlockingConnectionPool. putConnection(Connection c)protected PooledConnectionProxyAbstractConnectionPool. retrieveConnectionProxy(Connection proxy)Retrieves the invocation handler from the supplied connection proxy.Constructors in org.ldaptive.pool with parameters of type Connection Constructor Description DefaultPooledConnectionProxy(Connection c)Creates a new pooled connection. -
Uses of Connection in org.ldaptive.transport
Classes in org.ldaptive.transport that implement Connection Modifier and Type Class Description classTransportConnectionBase class for connection implementations.Fields in org.ldaptive.transport declared as Connection Modifier and Type Field Description private ConnectionMessageFunctional. connectionConnection the request occurred on.Methods in org.ldaptive.transport that return Connection Modifier and Type Method Description ConnectionTransport. create(ConnectionConfig cc)Create a connection object.ConnectionMessageFunctional. getConnection()Methods in org.ldaptive.transport with parameters of type Connection Modifier and Type Method Description voidMessageFunctional. setConnection(Connection conn) -
Uses of Connection in org.ldaptive.transport.netty
Classes in org.ldaptive.transport.netty that implement Connection Modifier and Type Class Description (package private) classNettyConnectionNetty based connection implementation.Methods in org.ldaptive.transport.netty that return Connection Modifier and Type Method Description ConnectionDefaultNettyTransport. create(ConnectionConfig cc)ConnectionStatefulNettyTransport. create(ConnectionConfig cc)
-