|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ConnectionFactory | |
|---|---|
| org.ldaptive | |
| org.ldaptive.ad.schema | |
| org.ldaptive.auth | |
| org.ldaptive.cli | |
| org.ldaptive.concurrent | |
| org.ldaptive.jaas | |
| org.ldaptive.pool | |
| org.ldaptive.schema | |
| Uses of ConnectionFactory in org.ldaptive |
|---|
| Classes in org.ldaptive that implement ConnectionFactory | |
|---|---|
class |
DefaultConnectionFactory
Creates connections for performing ldap operations. |
| Methods in org.ldaptive that return ConnectionFactory | |
|---|---|
ConnectionFactory |
ConnectionFactoryManager.getConnectionFactory()
Returns the connection factory. |
| Methods in org.ldaptive with parameters of type ConnectionFactory | |
|---|---|
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory)
Performs a search operation with the supplied connection factory. |
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory,
SearchFilter filter)
Performs a search operation with the supplied connection factory. |
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory,
SearchFilter filter,
String... attrs)
Performs a search operation with the supplied connection factory. |
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory,
SearchFilter filter,
String[] attrs,
SearchEntryHandler... handlers)
Performs a search operation with the supplied connection factory. |
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory,
String filter)
Performs a search operation with the supplied connection factory. |
Response<SearchResult> |
SearchExecutor.search(ConnectionFactory factory,
String filter,
String... attrs)
Performs a search operation with the supplied connection factory. |
void |
ConnectionFactoryManager.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
| Uses of ConnectionFactory in org.ldaptive.ad.schema |
|---|
| Methods in org.ldaptive.ad.schema with parameters of type ConnectionFactory | |
|---|---|
static Schema |
SchemaFactory.createSchema(ConnectionFactory factory,
String entryDn)
Creates a new schema. |
protected static SearchResult |
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 |
|---|
| Methods in org.ldaptive.auth that return ConnectionFactory | |
|---|---|
ConnectionFactory |
SearchDnResolver.getConnectionFactory()
Returns the connection factory. |
ConnectionFactory |
SearchEntryResolver.getConnectionFactory()
Returns the connection factory. |
ConnectionFactory |
BindAuthenticationHandler.getConnectionFactory()
Returns the connection factory. |
ConnectionFactory |
CompareAuthenticationHandler.getConnectionFactory()
Returns the connection factory. |
| Methods in org.ldaptive.auth with parameters of type ConnectionFactory | |
|---|---|
void |
SearchDnResolver.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
void |
SearchEntryResolver.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
void |
BindAuthenticationHandler.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
void |
CompareAuthenticationHandler.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
| Constructors in org.ldaptive.auth with parameters of type ConnectionFactory | |
|---|---|
BindAuthenticationHandler(ConnectionFactory cf)
Creates a new bind authentication handler. |
|
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. |
|
SearchEntryResolver(ConnectionFactory cf,
String... attrs)
Deprecated. return attributes are provided in the authentication criteria |
|
| Uses of ConnectionFactory in org.ldaptive.cli |
|---|
| Methods in org.ldaptive.cli that return ConnectionFactory | |
|---|---|
protected ConnectionFactory |
AbstractCli.initConnectionFactory(org.apache.commons.cli.CommandLine line)
Initialize a connection factory with command line options. |
| Methods in org.ldaptive.cli with parameters of type ConnectionFactory | |
|---|---|
protected int |
AddOperationCli.add(ConnectionFactory cf,
String file)
Executes the ldap add operation. |
protected int |
CompareOperationCli.compare(ConnectionFactory cf,
String dn,
LdapAttribute attr)
Executes the ldap compare operation. |
protected int |
DeleteOperationCli.delete(ConnectionFactory cf,
String[] entryDns)
Executes the ldap delete operation. |
protected int |
SearchOperationCli.search(ConnectionFactory cf,
SearchRequest request)
Executes the ldap search operation. |
| Uses of ConnectionFactory in org.ldaptive.concurrent |
|---|
| Classes in org.ldaptive.concurrent with type parameters of type ConnectionFactory | |
|---|---|
class |
AbstractAggregateSearchExecutor<T extends ConnectionFactory>
Base class for aggregate search executors. |
class |
AbstractParallelSearchExecutor<T extends ConnectionFactory>
Base class for parallel search executors. |
| Methods in org.ldaptive.concurrent with parameters of type ConnectionFactory | |
|---|---|
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory)
Performs a search operation with the supplied connection factory. |
Collection<Response<SearchResult>> |
AggregateSearchExecutor.search(ConnectionFactory[] factories,
SearchFilter[] filters,
String[] attrs,
SearchEntryHandler... handlers)
Performs a search operation with the supplied connection factories. |
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory,
SearchFilter filter)
Performs a search operation with the supplied connection factory. |
Collection<Response<SearchResult>> |
ParallelSearchExecutor.search(ConnectionFactory factory,
SearchFilter[] filters,
String[] attrs,
SearchEntryHandler... handlers)
Performs a search operation with the supplied connection factory. |
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory,
SearchFilter filter,
String... attrs)
Performs a search operation with the supplied connection factory. |
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory,
SearchFilter filter,
String[] attrs,
SearchEntryHandler... handlers)
Performs a search operation with the supplied connection factory. |
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory,
String filter)
Performs a search operation with the supplied connection factory. |
BlockingQueue<QueueingSearchExecutor.SearchItem> |
QueueingSearchExecutor.search(ConnectionFactory factory,
String filter,
String... attrs)
Performs a search operation with the supplied connection factory. |
Collection<Response<SearchResult>> |
AbstractAggregateSearchExecutor.search(T[] factories,
SearchFilter[] filters)
Performs a search operation with the supplied connection factories. |
Collection<Response<SearchResult>> |
AbstractAggregateSearchExecutor.search(T[] factories,
SearchFilter[] filters,
String... attrs)
Performs a search operation with the supplied connection factories. |
abstract Collection<Response<SearchResult>> |
AbstractAggregateSearchExecutor.search(T[] factories,
SearchFilter[] filters,
String[] attrs,
SearchEntryHandler... handlers)
Performs a search operation with the supplied connection factories. |
Collection<Response<SearchResult>> |
AbstractAggregateSearchExecutor.search(T[] factories,
String... filters)
Performs a search operation with the supplied connection factories. |
Collection<Response<SearchResult>> |
AbstractAggregateSearchExecutor.search(T[] factories,
String[] filters,
String... attrs)
Performs a search operation with the supplied connection factories. |
| Uses of ConnectionFactory in org.ldaptive.jaas |
|---|
| Methods in org.ldaptive.jaas that return ConnectionFactory | |
|---|---|
ConnectionFactory |
SearchRoleResolver.getConnectionFactory()
Returns the connection factory. |
| Methods in org.ldaptive.jaas with parameters of type ConnectionFactory | |
|---|---|
void |
SearchRoleResolver.setConnectionFactory(ConnectionFactory cf)
Sets the connection factory. |
| Constructors in org.ldaptive.jaas with parameters of type ConnectionFactory | |
|---|---|
SearchRoleResolver(ConnectionFactory cf)
Creates a new role resolver. |
|
| Uses of ConnectionFactory in org.ldaptive.pool |
|---|
| Classes in org.ldaptive.pool that implement ConnectionFactory | |
|---|---|
class |
PooledConnectionFactory
Leverages a pool to obtain connections for performing ldap operations. |
| Uses of ConnectionFactory in org.ldaptive.schema |
|---|
| Methods in org.ldaptive.schema with parameters of type ConnectionFactory | |
|---|---|
static Schema |
SchemaFactory.createSchema(ConnectionFactory factory)
Creates a new schema. |
static Schema |
SchemaFactory.createSchema(ConnectionFactory factory,
String entryDn)
Creates a new schema. |
protected static LdapEntry |
SchemaFactory.getLdapEntry(ConnectionFactory factory,
String dn,
String filter,
String[] retAttrs)
Searches for the supplied dn and returns its ldap entry. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||