Uses of Class
edu.vt.middleware.ldap.LdapConfig
-
Packages that use LdapConfig Package Description edu.vt.middleware.ldap edu.vt.middleware.ldap.auth edu.vt.middleware.ldap.handler edu.vt.middleware.ldap.pool -
-
Uses of LdapConfig in edu.vt.middleware.ldap
Classes in edu.vt.middleware.ldap with type parameters of type LdapConfig Modifier and Type Class Description class
AbstractLdap<T extends LdapConfig>
AbstractLdap
contains the functions for basic interaction with a LDAP.Fields in edu.vt.middleware.ldap declared as LdapConfig Modifier and Type Field Description protected T
AbstractLdap. config
LDAP configuration environment.Methods in edu.vt.middleware.ldap that return LdapConfig Modifier and Type Method Description static LdapConfig
LdapConfig. createFromProperties(java.io.InputStream is)
Create an instance of this class initialized with properties from the input stream.LdapConfig
Ldap. getLdapConfig()
This returns theLdapConfig
of theLdap
.protected LdapConfig
LdapCli. initLdapConfig(org.apache.commons.cli.CommandLine line)
Initialize an LdapConfig with command line options.Methods in edu.vt.middleware.ldap with parameters of type LdapConfig Modifier and Type Method Description protected void
LdapCli. search(LdapConfig config, java.lang.String filter, java.lang.String[] attrs)
Executes the ldap search operation.void
Ldap. setLdapConfig(LdapConfig ldapConfig)
This will set the config parameters of thisLdap
.Constructors in edu.vt.middleware.ldap with parameters of type LdapConfig Constructor Description Ldap(LdapConfig ldapConfig)
This will create a newLdap
with the suppliedLdapConfig
. -
Uses of LdapConfig in edu.vt.middleware.ldap.auth
Subclasses of LdapConfig in edu.vt.middleware.ldap.auth Modifier and Type Class Description class
AuthenticatorConfig
AuthenticatorConfig
contains all the configuration data that theAuthenticator
needs to control authentication. -
Uses of LdapConfig in edu.vt.middleware.ldap.handler
Fields in edu.vt.middleware.ldap.handler declared as LdapConfig Modifier and Type Field Description protected LdapConfig
AbstractConnectionHandler. config
Ldap configuration.Methods in edu.vt.middleware.ldap.handler that return LdapConfig Modifier and Type Method Description LdapConfig
AbstractConnectionHandler. getLdapConfig()
Returns the ldap configuration.LdapConfig
ConnectionHandler. getLdapConfig()
Returns the ldap configuration.Methods in edu.vt.middleware.ldap.handler with parameters of type LdapConfig Modifier and Type Method Description void
AbstractConnectionHandler. setLdapConfig(LdapConfig lc)
Sets the ldap configuration.void
ConnectionHandler. setLdapConfig(LdapConfig lc)
Sets the ldap configuration.Constructors in edu.vt.middleware.ldap.handler with parameters of type LdapConfig Constructor Description DefaultConnectionHandler(LdapConfig lc)
Creates a newDefaultConnectionHandler
with the supplied ldap config.TlsConnectionHandler(LdapConfig lc)
Creates a newTlsConnectionHandler
with the supplied ldap config. -
Uses of LdapConfig in edu.vt.middleware.ldap.pool
Constructors in edu.vt.middleware.ldap.pool with parameters of type LdapConfig Constructor Description DefaultLdapFactory(LdapConfig lc)
This creates a newDefaultLdapFactory
with the supplied ldap configuration.
-