From 82228a346b457c0f7e3eb8b8fb385e05036723c1 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 20 Nov 2006 06:02:30 +0000
Subject: [PATCH] Update the ldappasswordmodify tool to align the SSL-related arguments with the other LDAP client tools.
---
opends/src/server/org/opends/server/messages/ToolMessages.java | 31 +++++++++++++++++++++++++++----
1 files changed, 27 insertions(+), 4 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/ToolMessages.java b/opends/src/server/org/opends/server/messages/ToolMessages.java
index b76f13f..2843689 100644
--- a/opends/src/server/org/opends/server/messages/ToolMessages.java
+++ b/opends/src/server/org/opends/server/messages/ToolMessages.java
@@ -7448,6 +7448,24 @@
/**
+ * The message ID for the message that will be used as the description for the
+ * sslKeyStorePIN argument. It does not take any arguments.
+ */
+ public static final int MSGID_LDAPPWMOD_DESCRIPTION_KEYSTORE_PIN =
+ CATEGORY_MASK_TOOLS | SEVERITY_MASK_INFORMATIONAL | 783;
+
+
+
+ /**
+ * The message ID for the message that will be used as the description for the
+ * sslKeyStorePIN argument. It does not take any arguments.
+ */
+ public static final int MSGID_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PIN =
+ CATEGORY_MASK_TOOLS | SEVERITY_MASK_INFORMATIONAL | 784;
+
+
+
+ /**
* Associates a set of generic messages with the message IDs defined in this
* class.
*/
@@ -9465,15 +9483,20 @@
registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_KEYSTORE,
"The path to the keystore to use when establishing " +
"SSL/TLS communication with the server.");
+ registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_KEYSTORE_PIN,
+ "The PIN needed to access the contents of the keystore.");
registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_KEYSTORE_PINFILE,
- "Specifies the path to a file containing the PIN needed " +
+ "The path to a file containing the PIN needed " +
"to access the contents of the keystore.");
registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_TRUSTSTORE,
- "The path to the truststore to use when establishing " +
+ "The path to the trust store to use when establishing " +
"SSL/TLS communication with the server.");
+ registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PIN,
+ "The PIN needed to access the contents of the trust " +
+ "store.");
registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PINFILE,
- "Specifies the path to a file containing the PIN needed " +
- "to access the contents of the truststore.");
+ "The path to a file containing the PIN needed to access" +
+ "the contents of the trust store.");
registerMessage(MSGID_LDAPPWMOD_DESCRIPTION_USAGE,
"Show this usage information.");
registerMessage(MSGID_LDAPPWMOD_CANNOT_INITIALIZE_ARGS,
--
Gitblit v1.10.0