From 859bdd9b3b404bc61bb4f6cf02eda18f75a26c7f Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 04 Dec 2009 10:17:24 +0000
Subject: [PATCH] Make class Javadoc for tools consistent.

---
 sdk/src/org/opends/sdk/tools/LDAPPasswordModify.java |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/sdk/src/org/opends/sdk/tools/LDAPPasswordModify.java b/sdk/src/org/opends/sdk/tools/LDAPPasswordModify.java
index 900ff61..0befe1f 100644
--- a/sdk/src/org/opends/sdk/tools/LDAPPasswordModify.java
+++ b/sdk/src/org/opends/sdk/tools/LDAPPasswordModify.java
@@ -18,19 +18,19 @@
 
 import com.sun.opends.sdk.util.Message;
 
+
+
 /**
- * This program provides a utility that uses the LDAP password modify extended
- * operation to change the password for a user.  It exposes the three primary
+ * A tool that can be used to issue LDAP password modify extended
+ * requests to the Directory Server. It exposes the three primary
  * options available for this operation, which are:
- *
  * <UL>
- *   <LI>The user identity whose password should be changed.</LI>
- *   <LI>The current password for the user.</LI>
- *   <LI>The new password for the user.
+ * <LI>The user identity whose password should be changed.</LI>
+ * <LI>The current password for the user.</LI>
+ * <LI>The new password for the user.
  * </UL>
- *
- * All of these are optional components that may be included or omitted from the
- * request.
+ * All of these are optional components that may be included or omitted
+ * from the request.
  */
 public class LDAPPasswordModify extends ConsoleApplication
 {
@@ -65,7 +65,7 @@
    * @return  An integer value of zero if everything completed successfully, or
    *          a nonzero value if an error occurred.
    */
-  public static int mainPasswordModify(String[] args)
+  static int mainPasswordModify(String[] args)
   {
     return mainPasswordModify(args, System.in, System.out, System.err);
   }
@@ -91,7 +91,7 @@
    *          <CODE>null</CODE> if standard error is not needed.
    * @return The error code.
    */
-  public static int mainPasswordModify(String[] args, InputStream inStream,
+  static int mainPasswordModify(String[] args, InputStream inStream,
                                        OutputStream outStream, OutputStream errStream)
   {
     return new LDAPPasswordModify(inStream, outStream, errStream).run(args);

--
Gitblit v1.10.0