From fe962db1ca6c350a03cdff4ac6e0450909e0b56f Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 10 Nov 2006 06:07:28 +0000
Subject: [PATCH] Update many of the command-line utilities so that the --configClass and --configFile arguments are marked hidden since those options will be provided by the shell script or batch file used to launch the tool.

---
 opends/src/server/org/opends/server/tools/EncodePassword.java |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/tools/EncodePassword.java b/opends/src/server/org/opends/server/tools/EncodePassword.java
index 7a864c6..35bd9ec 100644
--- a/opends/src/server/org/opends/server/tools/EncodePassword.java
+++ b/opends/src/server/org/opends/server/tools/EncodePassword.java
@@ -131,6 +131,7 @@
                                        true, false, true, "{configClass}",
                                        ConfigFileHandler.class.getName(), null,
                                        MSGID_ENCPW_DESCRIPTION_CONFIG_CLASS);
+      configClass.setHidden(true);
       argParser.addArgument(configClass);
 
 
@@ -138,6 +139,7 @@
                                       true, false, true, "{configFile}", null,
                                       null,
                                       MSGID_ENCPW_DESCRIPTION_CONFIG_FILE);
+      configFile.setHidden(true);
       argParser.addArgument(configFile);
 
 

--
Gitblit v1.10.0