Uses of Class
edu.vt.middleware.ldap.Ldap
-
Packages that use Ldap Package Description edu.vt.middleware.ldap edu.vt.middleware.ldap.dsml edu.vt.middleware.ldap.handler edu.vt.middleware.ldap.jaas edu.vt.middleware.ldap.ldif edu.vt.middleware.ldap.pool -
-
Uses of Ldap in edu.vt.middleware.ldap
Fields in edu.vt.middleware.ldap with type parameters of type Ldap Modifier and Type Field Description protected LdapPool<Ldap>
LdapSearch. pool
Ldap object to use for searching.Constructor parameters in edu.vt.middleware.ldap with type arguments of type Ldap Constructor Description LdapSearch(LdapPool<Ldap> pool)
This creates a newLdapSearch
with the supplied pool. -
Uses of Ldap in edu.vt.middleware.ldap.dsml
Constructor parameters in edu.vt.middleware.ldap.dsml with type arguments of type Ldap Constructor Description DsmlSearch(LdapPool<Ldap> pool)
This creates a newDsmlSearch
with the supplied pool. -
Uses of Ldap in edu.vt.middleware.ldap.handler
Methods in edu.vt.middleware.ldap.handler that return Ldap Modifier and Type Method Description Ldap
ExtendedAttributeHandler. getSearchResultLdap()
Gets theLdap
used by the search operation invoking this handler.Ldap
ExtendedSearchResultHandler. getSearchResultLdap()
Gets theLdap
used by the search operation invoking this handler.Ldap
RecursiveAttributeHandler. getSearchResultLdap()
Gets theLdap
used by the search operation invoking this handler.Ldap
RecursiveSearchResultHandler. getSearchResultLdap()
Gets theLdap
used by the search operation invoking this handler.Methods in edu.vt.middleware.ldap.handler with parameters of type Ldap Modifier and Type Method Description void
ExtendedAttributeHandler. setSearchResultLdap(Ldap l)
Sets theLdap
used by the search operation invoking this handler.void
ExtendedSearchResultHandler. setSearchResultLdap(Ldap l)
Sets theLdap
used by the search operation invoking this handler.void
RecursiveAttributeHandler. setSearchResultLdap(Ldap l)
Sets theLdap
used by the search operation invoking this handler.void
RecursiveSearchResultHandler. setSearchResultLdap(Ldap l)
Sets theLdap
used by the search operation invoking this handler.Constructors in edu.vt.middleware.ldap.handler with parameters of type Ldap Constructor Description RecursiveAttributeHandler(Ldap l, java.lang.String attrName)
Creates a newRecursiveAttributeHandler
with the supplied ldap and attribute name.RecursiveSearchResultHandler(Ldap l, java.lang.String searchAttr, java.lang.String[] mergeAttrs)
Creates a newRecursiveAttributeHandler
with the supplied ldap, search attribute, and merge attributes. -
Uses of Ldap in edu.vt.middleware.ldap.jaas
Methods in edu.vt.middleware.ldap.jaas that return Ldap Modifier and Type Method Description static Ldap
AbstractLoginModule. createLdap(java.util.Map<java.lang.String,?> options)
This constructs a newLdap
with the supplied jaas options. -
Uses of Ldap in edu.vt.middleware.ldap.ldif
Constructor parameters in edu.vt.middleware.ldap.ldif with type arguments of type Ldap Constructor Description LdifSearch(LdapPool<Ldap> pool)
This creates a newLdifSearch
with the supplied pool. -
Uses of Ldap in edu.vt.middleware.ldap.pool
Methods in edu.vt.middleware.ldap.pool that return Ldap Modifier and Type Method Description protected Ldap
BlockingLdapPool. blockAvailable()
This blocks until an ldap object can be aquired.Ldap
BlockingLdapPool. checkOut()
Returns an ldap object from the pool.Ldap
SharedLdapPool. checkOut()
Returns an ldap object from the pool.Ldap
SoftLimitLdapPool. checkOut()
Returns an ldap object from the pool.Ldap
DefaultLdapFactory. create()
Create a new ldap object.protected Ldap
BlockingLdapPool. retrieveAvailable()
This attempts to retrieve an ldap object from the available queue.protected Ldap
SharedLdapPool. retrieveAvailable()
This attempts to retrieve an ldap object from the available queue.Methods in edu.vt.middleware.ldap.pool with parameters of type Ldap Modifier and Type Method Description boolean
ConnectLdapActivator. activate(Ldap l)
Activate the supplied ldap object.void
BlockingLdapPool. checkIn(Ldap l)
Returns an ldap object to the pool.void
SharedLdapPool. checkIn(Ldap l)
Returns an ldap object to the pool.void
DefaultLdapFactory. destroy(Ldap l)
Destroy an ldap object.boolean
CloseLdapPassivator. passivate(Ldap l)
Passivate the supplied ldap object.boolean
CompareLdapValidator. validate(Ldap l)
Validate the supplied ldap object.boolean
ConnectLdapValidator. validate(Ldap l)
Validate the supplied ldap object.Constructor parameters in edu.vt.middleware.ldap.pool with type arguments of type Ldap Constructor Description BlockingLdapPool(LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap factory.BlockingLdapPool(LdapPoolConfig lpc, LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap config and factory.SharedLdapPool(LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap factory.SharedLdapPool(LdapPoolConfig lpc, LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap config and factory.SoftLimitLdapPool(LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap factory.SoftLimitLdapPool(LdapPoolConfig lpc, LdapFactory<Ldap> lf)
Creates a new ldap pool with the supplied ldap config and factory.
-