org.apache.ldap.server.authn
Interface AuthenticatorConfig

All Known Implementing Classes:
AbstractAuthenticator, GenericAuthenticatorConfig

public interface AuthenticatorConfig

An authenticator configuration object used by the server to pass information to an authenticator during initialization.

Author:
Apache Directory Project

Method Summary
 AuthenticatorContext getAuthenticatorContext()
          Returns a reference to the AuthenticatorContext.
 java.lang.String getAuthenticatorName()
          Returns the name of this authenticator instance.
 java.lang.String getInitParameter(java.lang.String name)
          Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.
 java.util.Enumeration getInitParameterNames()
          Returns the names of the servlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the servlet has no initialization parameters.
 

Method Detail

getAuthenticatorName

public java.lang.String getAuthenticatorName()
Returns the name of this authenticator instance.


getInitParameter

public java.lang.String getInitParameter(java.lang.String name)
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.


getInitParameterNames

public java.util.Enumeration getInitParameterNames()
Returns the names of the servlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the servlet has no initialization parameters.


getAuthenticatorContext

public AuthenticatorContext getAuthenticatorContext()
Returns a reference to the AuthenticatorContext.