From f84b81d9579b70e1f4aab3e8434328bb3d8f8723 Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Wed, 19 Feb 2014 16:38:16 +0000
Subject: [PATCH] Checkpoint for OPENDJ-1303 "opendj-cli" - Added messages. - Added common arguments. - Added constants. - Unit test : removed TODO.

---
 opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java
index b3c2445..87c366a 100644
--- a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java
+++ b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentConstants.java
@@ -618,7 +618,7 @@
     /**
      * The value for the long option advanced.
      */
-    public static final String OPTION_DSCFG_LONG_ADVANCED = "advanced";
+    public static final String OPTION_LONG_ADVANCED = "advanced";
 
     /**
      * Display the equivalent non-interactive command.
@@ -630,6 +630,26 @@
      */
     public static final String OPTION_LONG_EQUIVALENT_COMMAND_FILE_PATH = "commandFilePath";
 
+    /**
+     * The value for the short option remote .
+     */
+    public static final char OPTION_SHORT_REMOTE = 'r';
+
+    /**
+     * The value for the long option remote .
+     */
+    public static final String OPTION_LONG_REMOTE = "remote";
+
+    /**
+     * The value for the short option configClass.
+     */
+    public static final char OPTION_SHORT_CONFIG_CLASS = 'C';
+
+    /**
+     * The value for the long option configClass.
+     */
+    public static final String OPTION_LONG_CONFIG_CLASS = "configClass";
+
     // Prevent instantiation.
     private ArgumentConstants() {
 

--
Gitblit v1.10.0