From f4db169cefe0d0d3e1685f1da77e0a3676b98284 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 29 Aug 2007 19:31:10 +0000
Subject: [PATCH] Fix for issue 2188:
---
opends/src/server/org/opends/server/tools/ToolConstants.java | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/ToolConstants.java b/opends/src/server/org/opends/server/tools/ToolConstants.java
index 8375877..074e7d8 100644
--- a/opends/src/server/org/opends/server/tools/ToolConstants.java
+++ b/opends/src/server/org/opends/server/tools/ToolConstants.java
@@ -345,6 +345,11 @@
public static final String OPTION_VALUE_KEYSTORE_PWD = "{keyStorePassword}";
/**
+ * The value for the short option trustStorePassword.
+ */
+ public static final char OPTION_SHORT_TRUSTSTORE_PWD = 'T';
+
+ /**
* The value for the long option trustStorePassword.
*/
public static final String OPTION_LONG_TRUSTSTORE_PWD = "trustStorePassword";
@@ -391,6 +396,32 @@
public static final String OPTION_VALUE_TRUSTSTORE_PWD_FILE = "{path}";
/**
+ * The value for the short option trustAll .
+ */
+ public static final char OPTION_SHORT_TRUSTALL = 'X';
+
+ /**
+ * The value for the long option trustAll .
+ */
+ public static final String OPTION_LONG_TRUSTALL = "trustAll";
+
+ /**
+ * The value for the short option certNickname .
+ */
+ public static final char OPTION_SHORT_CERT_NICKNAME = 'N';
+
+ /**
+ * The value for the long option certNickname .
+ */
+ public static final String OPTION_LONG_CERT_NICKNAME = "certNickname";
+
+ /**
+ * The placeholder value of certNickname that will be displayed in usage
+ * information.
+ */
+ public static final String OPTION_VALUE_CERT_NICKNAME = "{nickname}";
+
+ /**
* The value for the long option assertionFilter .
*/
public static final String OPTION_LONG_ASSERTION_FILE = "assertionFilter";
@@ -666,6 +697,14 @@
*/
public static final String OPTION_LONG_NO_PROMPT = "no-prompt";
+ /**
+ * Value for verbose option short form.
+ */
+ public static final Character OPTION_SHORT_VERBOSE = 'v';
+ /**
+ * Value for verbose option long form.
+ */
+ public static final String OPTION_LONG_VERBOSE = "verbose";
}
--
Gitblit v1.10.0