From 9137826c0afd4a59154444bfd0ec115f131b9c9a 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.
---
opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java b/opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java
index 8304ed0..6120189 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java
@@ -134,6 +134,7 @@
true, "{configClass}",
ConfigFileHandler.class.getName(), null,
MSGID_BACKUPDB_DESCRIPTION_CONFIG_CLASS);
+ configClass.setHidden(true);
argParser.addArgument(configClass);
@@ -141,6 +142,7 @@
new StringArgument("configfile", 'f', "configFile", true, false,
true, "{configFile}", null, null,
MSGID_BACKUPDB_DESCRIPTION_CONFIG_FILE);
+ configFile.setHidden(true);
argParser.addArgument(configFile);
--
Gitblit v1.10.0