Interface SubjectEqualsDnCertificateMapperCfgClient
-
- All Superinterfaces:
CertificateMapperCfgClient
,ConfigurationClient
public interface SubjectEqualsDnCertificateMapperCfgClient extends CertificateMapperCfgClient
A client-side interface for reading and modifying Subject Equals DN Certificate Mapper settings.The Subject Equals DN Certificate Mapper maps client certificates to user entries based on the assumption that the certificate subject is the same as the DN of the target user entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends SubjectEqualsDnCertificateMapperCfgClient,? extends SubjectEqualsDnCertificateMapperCfg>
definition()
Get the configuration definition associated with this Subject Equals DN Certificate Mapper.ValueOrExpression<String>
getJavaClass()
Gets the "java-class" property.void
setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.server.config.client.CertificateMapperCfgClient
getIssuerAttribute, isEnabled, setEnabled, setIssuerAttribute
-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends SubjectEqualsDnCertificateMapperCfgClient,? extends SubjectEqualsDnCertificateMapperCfg> definition()
Get the configuration definition associated with this Subject Equals DN Certificate Mapper.- Specified by:
definition
in interfaceCertificateMapperCfgClient
- Specified by:
definition
in interfaceConfigurationClient
- Returns:
- Returns the configuration definition associated with this Subject Equals DN Certificate Mapper.
-
getJavaClass
@MandatoryProperty ValueOrExpression<String> getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Subject Equals DN Certificate Mapper implementation.
Default value:
org.opends.server.extensions.SubjectEqualsDNCertificateMapper
- Specified by:
getJavaClass
in interfaceCertificateMapperCfgClient
- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
@MandatoryProperty void setJavaClass(ValueOrExpression<String> value) throws PropertyException
Sets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Subject Equals DN Certificate Mapper implementation.
- Specified by:
setJavaClass
in interfaceCertificateMapperCfgClient
- Parameters:
value
- The value of the "java-class" property.- Throws:
PropertyException
- If the new value is invalid.
-
-