Interface FingerprintCertificateMapperCfg
-
- All Superinterfaces:
CertificateMapperCfg,Configuration
public interface FingerprintCertificateMapperCfg extends CertificateMapperCfg
A server-side interface for querying Fingerprint Certificate Mapper settings.The Fingerprint Certificate Mapper maps client certificates to user entries by looking for the MD5 or SHA1 fingerprint in a specified attribute of user entries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFingerprintChangeListener(ConfigurationChangeListener<FingerprintCertificateMapperCfg> listener)Register to be notified when this Fingerprint Certificate Mapper is changed.Class<? extends FingerprintCertificateMapperCfg>configurationClass()Gets the configuration class associated with this Fingerprint Certificate Mapper.FingerprintCertificateMapperCfgDefn.FingerprintAlgorithmgetFingerprintAlgorithm()Gets the "fingerprint-algorithm" property.org.forgerock.opendj.ldap.schema.AttributeTypegetFingerprintAttribute()Gets the "fingerprint-attribute" property.StringgetJavaClass()Gets the "java-class" property.SortedSet<org.forgerock.opendj.ldap.DN>getUserBaseDN()Gets the "user-base-dn" property.voidremoveFingerprintChangeListener(ConfigurationChangeListener<FingerprintCertificateMapperCfg> listener)Deregister an existing Fingerprint Certificate Mapper configuration change listener.-
Methods inherited from interface org.forgerock.opendj.server.config.server.CertificateMapperCfg
addChangeListener, isEnabled, removeChangeListener
-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends FingerprintCertificateMapperCfg> configurationClass()
Gets the configuration class associated with this Fingerprint Certificate Mapper.- Specified by:
configurationClassin interfaceCertificateMapperCfg- Specified by:
configurationClassin interfaceConfiguration- Returns:
- Returns the configuration class associated with this Fingerprint Certificate Mapper.
-
addFingerprintChangeListener
void addFingerprintChangeListener(ConfigurationChangeListener<FingerprintCertificateMapperCfg> listener)
Register to be notified when this Fingerprint Certificate Mapper is changed.- Parameters:
listener- The Fingerprint Certificate Mapper configuration change listener.
-
removeFingerprintChangeListener
void removeFingerprintChangeListener(ConfigurationChangeListener<FingerprintCertificateMapperCfg> listener)
Deregister an existing Fingerprint Certificate Mapper configuration change listener.- Parameters:
listener- The Fingerprint Certificate Mapper configuration change listener.
-
getFingerprintAlgorithm
FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm getFingerprintAlgorithm()
Gets the "fingerprint-algorithm" property.Specifies the name of the digest algorithm to compute the fingerprint of client certificates.
- Returns:
- Returns the value of the "fingerprint-algorithm" property.
-
getFingerprintAttribute
org.forgerock.opendj.ldap.schema.AttributeType getFingerprintAttribute()
Gets the "fingerprint-attribute" property.Specifies the attribute in which to look for the fingerprint.
Values of the fingerprint attribute should exactly match the MD5 or SHA1 representation of the certificate fingerprint.
- Returns:
- Returns the value of the "fingerprint-attribute" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Fingerprint Certificate Mapper implementation.
- Specified by:
getJavaClassin interfaceCertificateMapperCfg- Returns:
- Returns the value of the "java-class" property.
-
getUserBaseDN
SortedSet<org.forgerock.opendj.ldap.DN> getUserBaseDN()
Gets the "user-base-dn" property.Specifies the set of base DNs below which to search for users.
The base DNs are used when performing searches to map the client certificates to a user entry.
- Returns:
- Returns an unmodifiable set containing the values of the "user-base-dn" property.
-
-