Uses of Interface
org.ldaptive.ConnectionFactory
-
-
Uses of ConnectionFactory in org.ldaptive
Classes in org.ldaptive that implement ConnectionFactory Modifier and Type Class Description class
DefaultConnectionFactory
Creates connections for performing ldap operations.class
PooledConnectionFactory
Creates connections for performing ldap operations and manages those connections as a pool.class
SingleConnectionFactory
Creates a single connection which is proxied for LDAP operations.Fields in org.ldaptive declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
AbstractOperation. connectionFactory
Connection factory.private ConnectionFactory
AbstractSearchOperationFactory. factory
Connection factory.Methods in org.ldaptive that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
AbstractOperation. getConnectionFactory()
ConnectionFactory
AbstractSearchOperationFactory. getConnectionFactory()
Returns the connection factory.ConnectionFactory
ConnectionFactoryManager. getConnectionFactory()
Returns the connection factory.Methods in org.ldaptive with parameters of type ConnectionFactory Modifier and Type Method Description protected SearchOperation
AbstractSearchOperationFactory. createSearchOperation(ConnectionFactory cf)
Creates a new search operation configured with the properties on this factory.static AddResponse
AddOperation. execute(ConnectionFactory factory, AddRequest request)
Executes an add request.static BindResponse
BindOperation. execute(ConnectionFactory factory, BindRequest request)
Executes a bind request.static CompareResponse
CompareOperation. execute(ConnectionFactory factory, CompareRequest request)
Executes a compare request.static DeleteResponse
DeleteOperation. execute(ConnectionFactory factory, DeleteRequest request)
Executes a delete request.static ModifyDnResponse
ModifyDnOperation. execute(ConnectionFactory factory, ModifyDnRequest request)
Executes a modify DN request.static ModifyResponse
ModifyOperation. execute(ConnectionFactory factory, ModifyRequest request)
Executes a modify request.static SearchResponse
SearchOperation. execute(ConnectionFactory factory, SearchRequest req)
Executes a search request.B
AbstractOperation.AbstractBuilder. factory(ConnectionFactory factory)
Sets the connection factory.static OperationHandle<AddRequest,AddResponse>
AddOperation. send(ConnectionFactory factory, AddRequest request)
Sends an add request.static OperationHandle<BindRequest,BindResponse>
BindOperation. send(ConnectionFactory factory, BindRequest request)
Sends a bind request.static CompareOperationHandle
CompareOperation. send(ConnectionFactory factory, CompareRequest request)
Sends a compare request.static OperationHandle<DeleteRequest,DeleteResponse>
DeleteOperation. send(ConnectionFactory factory, DeleteRequest request)
Sends a delete request.static OperationHandle<ModifyDnRequest,ModifyDnResponse>
ModifyDnOperation. send(ConnectionFactory factory, ModifyDnRequest request)
Sends a modify DN request.static OperationHandle<ModifyRequest,ModifyResponse>
ModifyOperation. send(ConnectionFactory factory, ModifyRequest request)
Sends a modify request.static SearchOperationHandle
SearchOperation. send(ConnectionFactory factory, SearchRequest req)
Sends a search request.void
AbstractOperation. setConnectionFactory(ConnectionFactory factory)
void
AbstractSearchOperationFactory. setConnectionFactory(ConnectionFactory cf)
Sets the connection factory.void
ConnectionFactoryManager. setConnectionFactory(ConnectionFactory cf)
Sets the connection factory.Constructors in org.ldaptive with parameters of type ConnectionFactory Constructor Description AbstractOperation(ConnectionFactory factory)
Creates a new abstract operation.AddOperation(ConnectionFactory factory)
Creates a new add operation.BindOperation(ConnectionFactory factory)
Creates a new bind operation.CompareOperation(ConnectionFactory factory)
Creates a new compare operation.DeleteOperation(ConnectionFactory factory)
Creates a new delete operation.ModifyDnOperation(ConnectionFactory factory)
Creates a new modify DN operation.ModifyOperation(ConnectionFactory factory)
Creates a new modify operation.SearchOperation(ConnectionFactory factory)
Creates a new search operation.SearchOperation(ConnectionFactory factory, String baseDN)
Creates a new search operation.SearchOperation(ConnectionFactory factory, SearchRequest req)
Creates a new search operation. -
Uses of ConnectionFactory in org.ldaptive.ad.control.util
Fields in org.ldaptive.ad.control.util declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
DirSyncClient. factory
Connection factory to get a connection from.private ConnectionFactory
NotificationClient. factory
Connection factory to get a connection from.Constructors in org.ldaptive.ad.control.util with parameters of type ConnectionFactory Constructor Description DirSyncClient(ConnectionFactory cf)
Creates a new dir sync client.DirSyncClient(ConnectionFactory cf, DirSyncControl.Flag[] dsFlags)
Creates a new dir sync client.DirSyncClient(ConnectionFactory cf, DirSyncControl.Flag[] dsFlags, int count)
Creates a new dir sync client.NotificationClient(ConnectionFactory cf)
Creates a new notification client. -
Uses of ConnectionFactory in org.ldaptive.ad.schema
Methods in org.ldaptive.ad.schema with parameters of type ConnectionFactory Modifier and Type Method Description static Schema
SchemaFactory. createSchema(ConnectionFactory factory, String entryDn)
Creates a new schema.private static SearchResponse
SchemaFactory. getSearchResult(ConnectionFactory factory, String dn, String filter, String[] retAttrs)
Searches for the supplied dn and returns its ldap entry. -
Uses of ConnectionFactory in org.ldaptive.auth
Fields in org.ldaptive.auth declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
AbstractAuthenticationHandler. factory
Connection factory.Methods in org.ldaptive.auth that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
AbstractAuthenticationHandler. getConnectionFactory()
Methods in org.ldaptive.auth with parameters of type ConnectionFactory Modifier and Type Method Description SearchDnResolver.Builder
SearchDnResolver.Builder. factory(ConnectionFactory factory)
Sets the connection factory.void
AbstractAuthenticationHandler. setConnectionFactory(ConnectionFactory cf)
Constructors in org.ldaptive.auth with parameters of type ConnectionFactory Constructor Description CompareAuthenticationHandler(ConnectionFactory cf)
Creates a new compare authentication handler.SearchDnResolver(ConnectionFactory cf)
Creates a new search dn resolver.SearchEntryResolver(ConnectionFactory cf)
Creates a new search entry resolver.SimpleBindAuthenticationHandler(ConnectionFactory cf)
Creates a new simple bind authentication handler. -
Uses of ConnectionFactory in org.ldaptive.beans.persistence
Fields in org.ldaptive.beans.persistence declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
DefaultLdapEntryManager. connectionFactory
Connection factory for LDAP communication.Methods in org.ldaptive.beans.persistence that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
DefaultLdapEntryManager. getConnectionFactory()
Returns the connection factory.Constructors in org.ldaptive.beans.persistence with parameters of type ConnectionFactory Constructor Description DefaultLdapEntryManager(LdapEntryMapper<T> mapper, ConnectionFactory factory)
Creates a new default ldap entry manager.DefaultLdapEntryManager(LdapEntryMapper<T> mapper, ConnectionFactory factory, String[] attrs)
Creates a new default ldap entry manager. -
Uses of ConnectionFactory in org.ldaptive.control.util
Fields in org.ldaptive.control.util declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
PersistentSearchClient. factory
Connection factory to get a connection from.private ConnectionFactory
SyncReplClient. factory
Connection factory to get a connection from.Methods in org.ldaptive.control.util that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
SyncReplClient. getConnectionFactory()
Returns the connection factory.Constructors in org.ldaptive.control.util with parameters of type ConnectionFactory Constructor Description PagedResultsClient(ConnectionFactory cf, int size)
Creates a new paged results client.PersistentSearchClient(ConnectionFactory cf, EnumSet<PersistentSearchChangeType> types, boolean co, boolean re)
Creates a new persistent search client.SyncReplClient(ConnectionFactory cf, boolean persist)
Creates a new sync repl client.SyncReplClient(ConnectionFactory cf, boolean persist, boolean hint)
Creates a new sync repl client.VirtualListViewClient(ConnectionFactory cf, SortKey... keys)
Creates a new virtual list view client. -
Uses of ConnectionFactory in org.ldaptive.ext
Fields in org.ldaptive.ext declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
MergeOperation. connectionFactory
Connection factory.Methods in org.ldaptive.ext that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
MergeOperation. getConnectionFactory()
Methods in org.ldaptive.ext with parameters of type ConnectionFactory Modifier and Type Method Description void
MergeOperation. setConnectionFactory(ConnectionFactory factory)
Constructors in org.ldaptive.ext with parameters of type ConnectionFactory Constructor Description MergeOperation(ConnectionFactory factory)
Creates a new merge operation. -
Uses of ConnectionFactory in org.ldaptive.extended
Methods in org.ldaptive.extended with parameters of type ConnectionFactory Modifier and Type Method Description static ExtendedResponse
ExtendedOperation. execute(ConnectionFactory factory, ExtendedRequest request)
Executes an extended request.static ExtendedOperationHandle
ExtendedOperation. send(ConnectionFactory factory, ExtendedRequest request)
Sends an extended request.Constructors in org.ldaptive.extended with parameters of type ConnectionFactory Constructor Description ExtendedOperation(ConnectionFactory factory)
Creates a new extended operation. -
Uses of ConnectionFactory in org.ldaptive.jaas
Constructors in org.ldaptive.jaas with parameters of type ConnectionFactory Constructor Description SearchRoleResolver(ConnectionFactory cf)
Creates a new role resolver. -
Uses of ConnectionFactory in org.ldaptive.referral
Methods in org.ldaptive.referral that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
DefaultReferralConnectionFactory. getConnectionFactory(String url)
ConnectionFactory
ReferralConnectionFactory. getConnectionFactory(String url)
Returns a connection factory for use with a referral.Methods in org.ldaptive.referral with parameters of type ConnectionFactory Modifier and Type Method Description protected abstract Operation<Q,S>
AbstractFollowReferralHandler. createReferralOperation(ConnectionFactory factory)
Creates an operation for this type of referral.protected SearchOperation
FollowSearchReferralHandler. createReferralOperation(ConnectionFactory factory)
protected SearchOperation
FollowSearchResultReferenceHandler. createReferralOperation(ConnectionFactory factory)
-
Uses of ConnectionFactory in org.ldaptive.schema
Methods in org.ldaptive.schema with parameters of type ConnectionFactory Modifier and Type Method Description static Schema
SchemaFactory. createSchema(ConnectionFactory factory)
Creates a new schema.static Schema
SchemaFactory. createSchema(ConnectionFactory factory, String entryDn)
Creates a new schema.private static LdapEntry
SchemaFactory. getLdapEntry(ConnectionFactory factory, String dn, String filter, String... retAttrs)
Searches for the supplied dn and returns its ldap entry. -
Uses of ConnectionFactory in org.ldaptive.transport
Fields in org.ldaptive.transport with type parameters of type ConnectionFactory Modifier and Type Field Description private static Map<Class<? extends ConnectionFactory>,Constructor<?>>
TransportFactory. TRANSPORT_OVERRIDE
Map of connection factory class to transport constructor.Method parameters in org.ldaptive.transport with type arguments of type ConnectionFactory Modifier and Type Method Description static Transport
TransportFactory. getTransport(Class<? extends ConnectionFactory> clazz)
TheTransportFactory.TRANSPORT_OVERRIDE
map is checked and that class is loaded if provided.
-