From efa949b25f472d7e4c39733678d8f0e5229f8201 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Thu, 26 Dec 2013 15:31:32 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1235 : Migrate configuration framework
---
opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/Configuration.java | 33 +++++++++++++++------------------
1 files changed, 15 insertions(+), 18 deletions(-)
diff --git a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/Configuration.java b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/Configuration.java
index 5cfe6e2..c91ed84 100644
--- a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/Configuration.java
+++ b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/admin/Configuration.java
@@ -29,26 +29,23 @@
import org.forgerock.opendj.ldap.DN;
/**
- * A common base interface for all server managed object
- * configurations.
+ * A common base interface for all server managed object configurations.
*/
public interface Configuration {
- /**
- * Gets the DN of the LDAP entry associated with this configuration.
- *
- * @return Returns the DN of the LDAP entry associated with this
- * configuration.
- */
- DN dn();
+ /**
+ * Gets the DN of the LDAP entry associated with this configuration.
+ *
+ * @return Returns the DN of the LDAP entry associated with this
+ * configuration.
+ */
+ DN dn();
-
-
- /**
- * Gets the configuration class associated with this configuration.
- *
- * @return Returns the configuration class associated with this
- * configuration.
- */
- Class<? extends Configuration> configurationClass();
+ /**
+ * Gets the configuration class associated with this configuration.
+ *
+ * @return Returns the configuration class associated with this
+ * configuration.
+ */
+ Class<? extends Configuration> configurationClass();
}
--
Gitblit v1.10.0