org.opends.server.admin.std.server
Interface CertificateMapperCfg

All Superinterfaces:
Configuration
All Known Subinterfaces:
FingerprintCertificateMapperCfg, SubjectAttributeToUserAttributeCertificateMapperCfg, SubjectDNToUserAttributeCertificateMapperCfg, SubjectEqualsDNCertificateMapperCfg

public interface CertificateMapperCfg
extends Configuration

A server-side interface for querying Certificate Mapper settings.

Certificate Mappers are responsible for establishing a mapping between a client certificate and the entry for the user that corresponds to that certificate.


Method Summary
 void addChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)
          Register to be notified when this Certificate Mapper is changed.
 java.lang.Class<? extends CertificateMapperCfg> configurationClass()
          Gets the configuration class associated with this Certificate Mapper.
 java.lang.String getJavaClass()
          Gets the "java-class" property.
 boolean isEnabled()
          Gets the "enabled" property.
 void removeChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)
          Deregister an existing Certificate Mapper configuration change listener.
 
Methods inherited from interface org.opends.server.admin.Configuration
dn
 

Method Detail

configurationClass

java.lang.Class<? extends CertificateMapperCfg> configurationClass()
Gets the configuration class associated with this Certificate Mapper.

Specified by:
configurationClass in interface Configuration
Returns:
Returns the configuration class associated with this Certificate Mapper.

addChangeListener

void addChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)
Register to be notified when this Certificate Mapper is changed.

Parameters:
listener - The Certificate Mapper configuration change listener.

removeChangeListener

void removeChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)
Deregister an existing Certificate Mapper configuration change listener.

Parameters:
listener - The Certificate Mapper configuration change listener.

isEnabled

boolean isEnabled()
Gets the "enabled" property.

Indicates whether the Certificate Mapper is enabled.

Returns:
Returns the value of the "enabled" property.

getJavaClass

java.lang.String getJavaClass()
Gets the "java-class" property.

Specifies the fully-qualified name of the Java class that provides the Certificate Mapper implementation.

Returns:
Returns the value of the "java-class" property.