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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)Register to be notified when this Certificate Mapper is changed.Class<? extends CertificateMapperCfg>configurationClass()Gets the configuration class associated with this Certificate Mapper.StringgetJavaClass()Gets the "java-class" property.booleanisEnabled()Gets the "enabled" property.voidremoveChangeListener(ConfigurationChangeListener<CertificateMapperCfg> listener)Deregister an existing Certificate Mapper configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends CertificateMapperCfg> configurationClass()
Gets the configuration class associated with this Certificate Mapper.- Specified by:
configurationClassin interfaceConfiguration- 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
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.
-
-