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/extensions/RandomPasswordGenerator.java |   44 +++++++++++++++++++-------------------------
 1 files changed, 19 insertions(+), 25 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/extensions/RandomPasswordGenerator.java b/opendj-server-legacy/src/main/java/org/opends/server/extensions/RandomPasswordGenerator.java
index 092721f..aef6bb3 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/extensions/RandomPasswordGenerator.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/extensions/RandomPasswordGenerator.java
@@ -60,37 +60,39 @@
   private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
 
 
-  // The current configuration for this password validator.
+  /** The current configuration for this password validator. */
   private RandomPasswordGeneratorCfg currentConfig;
 
-  // The encoded list of character sets defined for this password generator.
+  /** The encoded list of character sets defined for this password generator. */
   private SortedSet<String> encodedCharacterSets;
 
-  // The DN of the configuration entry for this password generator.
+  /** The DN of the configuration entry for this password generator. */
   private DN configEntryDN;
 
-  // The total length of the password that will be generated.
+  /** The total length of the password that will be generated. */
   private int totalLength;
 
-  // The numbers of characters of each type that should be used to generate the
-  // passwords.
+  /**
+   * The numbers of characters of each type that should be used to generate the
+   * passwords.
+   */
   private int[] characterCounts;
 
-  // The character sets that should be used to generate the passwords.
+  /** The character sets that should be used to generate the passwords. */
   private NamedCharacterSet[] characterSets;
 
-  // The lock to use to ensure that the character sets and counts are not
-  // altered while a password is being generated.
+  /**
+   * The lock to use to ensure that the character sets and counts are not
+   * altered while a password is being generated.
+   */
   private Object generatorLock;
 
-  // The character set format string for this password generator.
+  /** The character set format string for this password generator. */
   private String formatString;
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public void initializePasswordGenerator(
       RandomPasswordGeneratorCfg configuration)
@@ -216,9 +218,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public void finalizePasswordGenerator()
   {
@@ -258,9 +258,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public boolean isConfigurationAcceptable(PasswordGeneratorCfg configuration,
                                            List<LocalizableMessage> unacceptableReasons)
@@ -272,9 +270,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public boolean isConfigurationChangeAcceptable(
       RandomPasswordGeneratorCfg configuration,
@@ -374,9 +370,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public ConfigChangeResult applyConfigurationChange(
       RandomPasswordGeneratorCfg configuration)

--
Gitblit v1.10.0