From 88db774678ad897f57338a3e1b34a1431ccdd5fd Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 26 Feb 2007 20:40:46 +0000
Subject: [PATCH] Add three new certificate mappers to the server:
---
opends/src/server/org/opends/server/config/ConfigConstants.java | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/ConfigConstants.java b/opends/src/server/org/opends/server/config/ConfigConstants.java
index 87d3575..dcbb8ed 100644
--- a/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -480,6 +480,55 @@
/**
+ * The name of the configuration attribute that holds the name of the
+ * attribute type that should be used when mapping a certificate fingerprint
+ * to a user entry.
+ */
+ public static final String ATTR_CERTIFICATE_FINGERPRINT_ATTR =
+ "ds-cfg-certificate-fingerprint-attribute-type";
+
+
+
+ /**
+ * The name of the configuration attribute that holds the name of the
+ * algorithm that should be used to generate the certificate fingerprint.
+ */
+ public static final String ATTR_CERTIFICATE_FINGERPRINT_ALGORITHM =
+ "ds-cfg-certificate-fingerprint-algorithm";
+
+
+
+ /**
+ * The name of the configuration attribute that holds the name of the
+ * attribute type that should be used when mapping a certificate subject to a
+ * user entry.
+ */
+ public static final String ATTR_CERTIFICATE_SUBJECT_ATTR =
+ "ds-cfg-certificate-subject-attribute-type";
+
+
+
+ /**
+ * The name of the configuration attribute that holds the name of the
+ * attribute type that should be used when mapping attributes in a certificate
+ * subject to a user entry.
+ */
+ public static final String ATTR_CERTIFICATE_SUBJECT_ATTR_MAP =
+ "ds-cfg-certificate-subject-attribute-mapping";
+
+
+
+ /**
+ * The name of the configuration attribute that holds the name of the
+ * attribute type that should be used when mapping a certificate subject to a
+ * user entry.
+ */
+ public static final String ATTR_CERTIFICATE_SUBJECT_BASEDN =
+ "ds-cfg-certificate-user-base-dn";
+
+
+
+ /**
* The name of the configuration attribute that holds the fully-qualified name
* of the Java class for the certificate mapper implementation.
*/
--
Gitblit v1.10.0