From c0a6b7da7b64ef23f2fdc6655546dc344f6ae041 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 27 Aug 2009 09:33:13 +0000
Subject: [PATCH] Modify the code in order the adminPassword and the adminPasswordFile arguments in dsreplication to appear with the LDAP connection arguments.

---
 opends/src/server/org/opends/server/util/cli/CommandBuilder.java |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/util/cli/CommandBuilder.java b/opends/src/server/org/opends/server/util/cli/CommandBuilder.java
index 680ce4a..65867ad 100644
--- a/opends/src/server/org/opends/server/util/cli/CommandBuilder.java
+++ b/opends/src/server/org/opends/server/util/cli/CommandBuilder.java
@@ -51,10 +51,12 @@
   private ArrayList<Argument> args = new ArrayList<Argument>();
   private HashSet<Argument> obfuscatedArgs = new HashSet<Argument>();
 
-  // The value used to display arguments that must be obfuscated (such as
-  // passwords).  This does not require localization (since the output of
-  // command builder by its nature is not localized).
-  private final static String OBFUSCATED_VALUE = "******";
+  /**
+   * The value used to display arguments that must be obfuscated (such as
+   * passwords).  This does not require localization (since the output of
+   * command builder by its nature is not localized).
+   */
+  public final static String OBFUSCATED_VALUE = "******";
 
   /**
    * The constructor for the CommandBuilder.

--
Gitblit v1.10.0