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/config/ConfigAttribute.java | 32 ++++++++++++++++++++------------
1 files changed, 20 insertions(+), 12 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigAttribute.java b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigAttribute.java
index 46d1344..faaf8e2 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigAttribute.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigAttribute.java
@@ -53,32 +53,40 @@
mayInvoke=true)
public abstract class ConfigAttribute
{
- // Indicates whether this configuration attribute has pending changes that
- // will be applied after appropriate administrative action has been performed.
+ /**
+ * Indicates whether this configuration attribute has pending changes that
+ * will be applied after appropriate administrative action has been performed.
+ */
private boolean hasPendingValues;
- // Indicates whether this configuration attribute may have multiple values.
+ /** Indicates whether this configuration attribute may have multiple values. */
private boolean isMultiValued;
- // Indicates whether this configuration attribute is required to have a value.
+ /** Indicates whether this configuration attribute is required to have a value. */
private boolean isRequired;
- // Indicates whether changes to this attribute require administrative action
- // before they will take effect.
+ /**
+ * Indicates whether changes to this attribute require administrative action
+ * before they will take effect.
+ */
private boolean requiresAdminAction;
- // The value or set of values that are currently in effect for this
- // configuration attribute.
+ /**
+ * The value or set of values that are currently in effect for this
+ * configuration attribute.
+ */
private LinkedHashSet<ByteString> activeValues;
- // The value or set of values that will be in effect once the appropriate
- // administrative action has been taken.
+ /**
+ * The value or set of values that will be in effect once the appropriate
+ * administrative action has been taken.
+ */
private LinkedHashSet<ByteString> pendingValues;
- // The description for this configuration attribute.
+ /** The description for this configuration attribute. */
private LocalizableMessage description;
- // The name for this configuration attribute.
+ /** The name for this configuration attribute. */
private String name;
--
Gitblit v1.10.0