From 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 15 Oct 2014 15:17:11 +0000
Subject: [PATCH] AutoRefactored comments/javadocs on OpenDJ SDK
---
opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java | 22 ++++++++++++----------
1 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java b/opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java
index 85ed70f..7ba15c3 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java
+++ b/opendj-config/src/main/java/org/forgerock/opendj/config/AdministratorAction.java
@@ -79,17 +79,15 @@
*/
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;
@@ -97,15 +95,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