From e7cac727a9231ff3602e61a4ea678e0463eb0e39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 09:41:42 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java |   24 +++++++++++++-----------
 1 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java b/opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java
index 2709ea4..bbdede7 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/admin/AdministratorAction.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2008 Sun Microsystems, Inc.
- *      Portions Copyright 2014 ForgeRock AS
+ *      Portions Copyright 2014-2015 ForgeRock AS
  */
 package org.opends.server.admin;
 import org.forgerock.i18n.LocalizableMessage;
@@ -86,21 +86,19 @@
      */
     SERVER_RESTART("server-restart");
 
-    // The user-friendly name of the type.
+    /** The user-friendly name of the type. */
     private final String name;
 
 
 
-    // Private constructor.
+    /** Private constructor. */
     private Type(String name) {
       this.name = name;
     }
 
 
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     @Override
     public String toString() {
       return name;
@@ -108,15 +106,19 @@
 
   }
 
-  // The managed object definition associated with this administrator
-  // action.
+  /**
+   * The managed object definition associated with this administrator
+   * action.
+   */
   private final AbstractManagedObjectDefinition<?, ?> definition;
 
-  // The name of the property definition associated with this
-  // administrator action.
+  /**
+   * The name of the property definition associated with this
+   * administrator action.
+   */
   private final String propertyName;
 
-  // The type of administration action.
+  /** The type of administration action. */
   private final Type type;
 
 

--
Gitblit v1.10.0