org.apache.ldap.server.authn
Class GenericAuthenticatorConfig

java.lang.Object
  extended byorg.apache.ldap.server.authn.GenericAuthenticatorConfig
All Implemented Interfaces:
AuthenticatorConfig

public class GenericAuthenticatorConfig
extends java.lang.Object
implements AuthenticatorConfig

Default implementation of AuthenticatorConfig.

Author:
Apache Directory Project

Constructor Summary
GenericAuthenticatorConfig()
           
 
Method Summary
 java.lang.String getAuthenticatorClass()
           
 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.
 java.util.Properties getProperties()
           
 void setAuthenticatorClass(java.lang.String authenticatorClass)
           
 void setAuthenticatorContext(AuthenticatorContext authenticatorContext)
           
 void setAuthenticatorName(java.lang.String authenticatorName)
           
 void setProperties(java.util.Properties properties)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GenericAuthenticatorConfig

public GenericAuthenticatorConfig()
Method Detail

getAuthenticatorName

public java.lang.String getAuthenticatorName()
Description copied from interface: AuthenticatorConfig
Returns the name of this authenticator instance.

Specified by:
getAuthenticatorName in interface AuthenticatorConfig

setAuthenticatorName

public void setAuthenticatorName(java.lang.String authenticatorName)

getAuthenticatorClass

public java.lang.String getAuthenticatorClass()

setAuthenticatorClass

public void setAuthenticatorClass(java.lang.String authenticatorClass)

getProperties

public java.util.Properties getProperties()

setProperties

public void setProperties(java.util.Properties properties)

getInitParameter

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

Specified by:
getInitParameter in interface AuthenticatorConfig

getInitParameterNames

public java.util.Enumeration getInitParameterNames()
Description copied from interface: AuthenticatorConfig
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.

Specified by:
getInitParameterNames in interface AuthenticatorConfig

getAuthenticatorContext

public AuthenticatorContext getAuthenticatorContext()
Description copied from interface: AuthenticatorConfig
Returns a reference to the AuthenticatorContext.

Specified by:
getAuthenticatorContext in interface AuthenticatorConfig

setAuthenticatorContext

public void setAuthenticatorContext(AuthenticatorContext authenticatorContext)