From c5e1bceb1bcb9f1f36d5b5f568ac5fd3b73d9c2c Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Fri, 13 Dec 2013 14:07:45 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1235 : Migrate configuration framework
---
opendj-admin/src/main/java/org/opends/server/admin/TopCfgDefn.java | 63 +++++++++++++------------------
1 files changed, 27 insertions(+), 36 deletions(-)
diff --git a/opendj-admin/src/main/java/org/opends/server/admin/TopCfgDefn.java b/opendj-admin/src/main/java/org/opends/server/admin/TopCfgDefn.java
index 240b55a..df4daaf 100644
--- a/opendj-admin/src/main/java/org/opends/server/admin/TopCfgDefn.java
+++ b/opendj-admin/src/main/java/org/opends/server/admin/TopCfgDefn.java
@@ -26,49 +26,40 @@
*/
package org.opends.server.admin;
-
-
/**
- * Configuration definition <code>TopCfgDefn</code> is the root of
- * the configuration definition hierarchy. Every configuration has
+ * Configuration definition <code>TopCfgDefn</code> is the root of the
+ * configuration definition hierarchy. Every configuration has
* <code>TopCfgDefn</code> as a superclass.
* <p>
- * The <code>TopCfgDefn</code> has no properties or relations.
- * However, it can be used to determine all the configuration
- * definitions currently available to the administration framework
- * using the {@link #getAllChildren()}.
+ * The <code>TopCfgDefn</code> has no properties or relations. However, it can
+ * be used to determine all the configuration definitions currently available to
+ * the administration framework using the {@link #getAllChildren()}.
* <p>
- * <b>NOTE:</b> it is not possible to retrieve I18N related
- * information or profile information for this managed object
- * definition. In particular, calls to the methods
- * {@link #getSynopsis()}, {@link #getDescription()},
- * {@link #getUserFriendlyName()}, and
- * {@link #getUserFriendlyPluralName()} will not work.
+ * <b>NOTE:</b> it is not possible to retrieve I18N related information or
+ * profile information for this managed object definition. In particular, calls
+ * to the methods {@link #getSynopsis()}, {@link #getDescription()},
+ * {@link #getUserFriendlyName()}, and {@link #getUserFriendlyPluralName()} will
+ * not work.
*/
-public final class TopCfgDefn extends
- AbstractManagedObjectDefinition<ConfigurationClient, Configuration> {
+public final class TopCfgDefn extends AbstractManagedObjectDefinition<ConfigurationClient, Configuration> {
- // The singleton configuration definition instance.
- private static final TopCfgDefn INSTANCE = new TopCfgDefn();
+ // The singleton configuration definition instance.
+ private static final TopCfgDefn INSTANCE = new TopCfgDefn();
+ /**
+ * Get the Top configuration definition singleton.
+ *
+ * @return Returns the Top configuration definition singleton.
+ */
+ public static TopCfgDefn getInstance() {
+ return INSTANCE;
+ }
-
- /**
- * Get the Top configuration definition singleton.
- *
- * @return Returns the Top configuration definition singleton.
- */
- public static TopCfgDefn getInstance() {
- return INSTANCE;
- }
-
-
-
- /**
- * Private constructor.
- */
- private TopCfgDefn() {
- super("top", null);
- }
+ /**
+ * Private constructor.
+ */
+ private TopCfgDefn() {
+ super("top", null);
+ }
}
--
Gitblit v1.10.0