From 587366cfbf99482112d7d3b4934bcca31b97332e Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 27 Jun 2007 13:09:01 +0000
Subject: [PATCH] fix for issue #1809 (Avoid operands wherever possible)
---
opendj-sdk/opends/src/server/org/opends/server/tools/ToolConstants.java | 35 +++++++++++++++++------------------
1 files changed, 17 insertions(+), 18 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/ToolConstants.java b/opendj-sdk/opends/src/server/org/opends/server/tools/ToolConstants.java
index a9a3583..23d1c60 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/ToolConstants.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/tools/ToolConstants.java
@@ -526,50 +526,49 @@
public static final String OPTION_VALUE_DESCRIPTION = "{description}";
/**
- * The value for the short option groupid attributes.
+ * The value for the short option groupName attributes.
*/
- public static final char OPTION_SHORT_GROUPID = 'g';
+ public static final char OPTION_SHORT_GROUPNAME = 'g';
/**
- * The value for the long option groupid
+ * The value for the long option groupName
* attribute.
*/
- public static final String OPTION_LONG_GROUPID= "groupId";
+ public static final String OPTION_LONG_GROUPNAME= "groupName";
/**
- * The placeholder value of groupid that will be
+ * The placeholder value of groupName that will be
* displayed in usage information.
*/
- public static final String OPTION_VALUE_GROUPID = "{group-id}";
+ public static final String OPTION_VALUE_GROUPNAME = "{group-name}";
/**
- * The value for the short option member-id attributes.
+ * The value for the short option newGroupName attribute.
*/
- public static final char OPTION_SHORT_MEMBERID = 'm';
+ public static final char OPTION_SHORT_NEWGROUPNAME = 'n';
/**
- * The value for the long member-id version
+ * The value for the long option groupName
* attribute.
*/
- public static final String OPTION_LONG_MEMBERID= "memberId";
+ public static final String OPTION_LONG_NEWGROUPNAME= "newGroupName";
/**
- * The placeholder value of member-id that will be
- * displayed in usage information.
+ * The value for the short option member-name attributes.
*/
- public static final String OPTION_VALUE_MEMBERID = "{member-id}";
+ public static final char OPTION_SHORT_MEMBERNAME = 'm';
/**
- * The placeholder value of group_id that will be
- * displayed in usage information.
+ * The value for the long member-name version
+ * attribute.
*/
- public static final String OPERAND_GROUPID = "GROUP_ID";
+ public static final String OPTION_LONG_MEMBERNAME= "memberName";
/**
- * The placeholder value of member_id that will be
+ * The placeholder value of member-name that will be
* displayed in usage information.
*/
- public static final String OPERAND_MEMBERID = "MEMBER_ID";
+ public static final String OPTION_VALUE_MEMBERNAME = "{member-name}";
/**
* The placeholder value of backend name that will be
--
Gitblit v1.10.0