Uses of Class
org.opends.server.api.CertificateMapper
-
Packages that use CertificateMapper Package Description org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages. -
-
Uses of CertificateMapper in org.opends.server.core
Methods in org.opends.server.core that return CertificateMapper Modifier and Type Method Description CertificateMapper<?>
DirectoryServer. getCertificateMapper(Dn mapperDN)
CertificateMapper<?>
ServerContext. getCertificateMapper(Dn mapperDN)
Retrieves the certificate mapper registered with the provided entry DN.Methods in org.opends.server.core with parameters of type CertificateMapper Modifier and Type Method Description void
DirectoryServer. registerCertificateMapper(Dn mapperDN, CertificateMapper<?> mapper)
void
ServerContext. registerCertificateMapper(Dn mapperDN, CertificateMapper<?> mapper)
Registers the provided certificate mapper with the Directory Server. -
Uses of CertificateMapper in org.opends.server.extensions
Subclasses of CertificateMapper in org.opends.server.extensions Modifier and Type Class Description class
FingerprintCertificateMapper
This class implements a very simple Directory Server certificate mapper that will map a certificate to a user only if that user's entry contains an attribute with the fingerprint of the client certificate.class
SubjectAttributeToUserAttributeCertificateMapper
This class implements a very simple Directory Server certificate mapper that will map a certificate to a user based on attributes contained in both the certificate subject and the user's entry.class
SubjectDNToUserAttributeCertificateMapper
This class implements a very simple Directory Server certificate mapper that will map a certificate to a user only if that user's entry contains an attribute with the subject of the client certificate.class
SubjectEqualsDNCertificateMapper
This class implements a very simple Directory Server certificate mapper that will map a certificate to a user only if the subject of the peer certificate exactly matches the DN of a user in the Directory Server.
-