From d3a10338d643cf04e89e577ba496c547e0bf7516 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 28 Feb 2007 21:01:32 +0000
Subject: [PATCH] Add a new key manager which provides the ability to specify which certificate should be presented based on its alias (aka its nickname).  This is used both by server-side code which needs to present a certificate to clients, as well as by client-side code which needs to present a certificate to the server.

---
 opends/src/server/org/opends/server/messages/ToolMessages.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/messages/ToolMessages.java b/opends/src/server/org/opends/server/messages/ToolMessages.java
index ae6eefb..978c092 100644
--- a/opends/src/server/org/opends/server/messages/ToolMessages.java
+++ b/opends/src/server/org/opends/server/messages/ToolMessages.java
@@ -7655,6 +7655,17 @@
   public static final int MSGID_STOPDS_CHECK_STOPPABILITY =
       CATEGORY_MASK_TOOLS | SEVERITY_MASK_INFORMATIONAL | 804;
 
+
+
+  /**
+   * The message ID for the message that will be used as the description of the
+   * certNickname argument.  This does not take any arguments.
+   */
+  public static final int MSGID_DESCRIPTION_CERT_NICKNAME =
+       CATEGORY_MASK_TOOLS | SEVERITY_MASK_INFORMATIONAL | 805;
+
+
+
   /**
    * Associates a set of generic messages with the message IDs defined in this
    * class.
@@ -8117,6 +8128,8 @@
                     "Certificate keystore PIN");
     registerMessage(MSGID_DESCRIPTION_KEYSTOREPASSWORD_FILE,
                     "Certificate keystore PIN file");
+    registerMessage(MSGID_DESCRIPTION_CERT_NICKNAME,
+                    "Nickname of certificate for SSL client authentication");
     registerMessage(MSGID_DESCRIPTION_TRUSTSTOREPASSWORD,
                     "Certificate trust store PIN");
     registerMessage(MSGID_DESCRIPTION_TRUSTSTOREPASSWORD_FILE,

--
Gitblit v1.10.0