From 99aaa917a95d7ec19e14dad25f61f58ff84753b1 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 10:49:57 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableResponseControl.java |   28 +++++++++++++++-------------
 1 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableResponseControl.java b/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableResponseControl.java
index fede05e..5a56417 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableResponseControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/controls/AccountUsableResponseControl.java
@@ -68,9 +68,7 @@
   private static final class Decoder
       implements ControlDecoder<AccountUsableResponseControl>
   {
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public AccountUsableResponseControl decode(boolean isCritical,
                                                ByteString value)
         throws DirectoryException
@@ -229,30 +227,34 @@
 
 
 
-  // Indicates whether the user's account is usable.
+  /** Indicates whether the user's account is usable. */
   private boolean isUsable;
 
-  // Indicates whether the user's password is expired.
+  /** Indicates whether the user's password is expired. */
   private boolean isExpired;
 
-  // Indicates whether the user's account is inactive.
+  /** Indicates whether the user's account is inactive. */
   private boolean isInactive;
 
-  // Indicates whether the user's account is currently locked.
+  /** Indicates whether the user's account is currently locked. */
   private boolean isLocked;
 
-  // Indicates whether the user's password has been reset and must be changed
-  // before anything else can be done.
+  /**
+   * Indicates whether the user's password has been reset and must be changed
+   * before anything else can be done.
+   */
   private boolean isReset;
 
-  // The number of remaining grace logins, if available.
+  /** The number of remaining grace logins, if available. */
   private int remainingGraceLogins;
 
-  // The length of time in seconds before the user's password expires, if
-  // available.
+  /**
+   * The length of time in seconds before the user's password expires, if
+   * available.
+   */
   private int secondsBeforeExpiration;
 
-  // The length of time before the user's account is unlocked, if available.
+  /** The length of time before the user's account is unlocked, if available. */
   private int secondsBeforeUnlock;
 
 

--
Gitblit v1.10.0