From 37de7a1e53f4b3a69030828068557fcd9a4b0722 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 23 May 2007 08:43:18 +0000
Subject: [PATCH] This is the first commit related to issue https://opends.dev.java.net/issues/show_bug.cgi?id=1334 This commit defines the CLI usage, with no underlying action.

---
 opends/src/server/org/opends/server/tools/ToolConstants.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 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 3b2e64a..b42d382 100644
--- a/opends/src/server/org/opends/server/tools/ToolConstants.java
+++ b/opends/src/server/org/opends/server/tools/ToolConstants.java
@@ -509,5 +509,66 @@
      */
      public static final String OPTION_LONG_PRODUCT_VERSION  = "version";
 
+  /**
+   * The value for the short option description attributes.
+   */
+  public static final char OPTION_SHORT_DESCRIPTION = 'd';
+
+  /**
+   * The value for the long option description attribute.
+   */
+  public static final String OPTION_LONG_DESCRIPTION = "description";
+
+  /**
+   * The placeholder value of description that will be
+   * displayed in usage information.
+   */
+  public static final String OPTION_VALUE_DESCRIPTION = "{description}";
+
+  /**
+   * The value for the short option groupid attributes.
+   */
+  public static final char OPTION_SHORT_GROUPID = 'g';
+
+  /**
+   * The value for the long option groupid
+   * attribute.
+   */
+  public static final String OPTION_LONG_GROUPID= "groupId";
+
+  /**
+   * The placeholder value of groupid that will be
+   * displayed in usage information.
+   */
+  public static final String OPTION_VALUE_GROUPID = "{group-id}";
+
+  /**
+   * The value for the short option member-id attributes.
+   */
+  public static final char OPTION_SHORT_MEMBERID = 'm';
+
+  /**
+   * The value for the long member-id version
+   * attribute.
+   */
+  public static final String OPTION_LONG_MEMBERID= "memberId";
+
+  /**
+   * The placeholder value of member-id that will be
+   * displayed in usage information.
+   */
+  public static final String OPTION_VALUE_MEMBERID = "{member-id}";
+
+  /**
+   * The placeholder value of group_id that will be
+   * displayed in usage information.
+   */
+  public static final String OPERAND_GROUPID = "GROUP_ID";
+
+  /**
+   * The placeholder value of member_id that will be
+   * displayed in usage information.
+   */
+  public static final String OPERAND_MEMBERID = "MEMBER_ID";
 }
 

--
Gitblit v1.10.0