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/server/ConfigChangeResult.java | 18 +++++++++++-------
1 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/server/ConfigChangeResult.java b/opendj-config/src/main/java/org/forgerock/opendj/config/server/ConfigChangeResult.java
index 965f5ae..9fcb553 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/server/ConfigChangeResult.java
+++ b/opendj-config/src/main/java/org/forgerock/opendj/config/server/ConfigChangeResult.java
@@ -37,17 +37,21 @@
* about the result of processing a configuration change.
*/
public final class ConfigChangeResult {
- // A set of messages describing the changes that were made, any
- // action that may be required, or any problems that were
- // encountered.
+ /**
+ * A set of messages describing the changes that were made, any
+ * action that may be required, or any problems that were encountered.
+ */
private List<LocalizableMessage> messages;
- // Indicates whether one or more of the changes requires
- // administrative action in order to take effect.
+ /**
+ * Indicates whether one or more of the changes requires
+ * administrative action in order to take effect.
+ */
private boolean adminActionRequired;
- // The result code to return to the client from this configuration
- // change.
+ /**
+ * The result code to return to the client from this configuration change.
+ */
private ResultCode resultCode;
/**
--
Gitblit v1.10.0