From ace2bd4146fe55154c0d716f20d9cbff3a2297d3 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 27 Sep 2007 14:50:30 +0000
Subject: [PATCH] Improvements to aggregation support and foundation work for expressing arbitrary constraints within components.
---
opends/src/server/org/opends/server/admin/Configuration.java | 13 ++++++++-----
1 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/Configuration.java b/opends/src/server/org/opends/server/admin/Configuration.java
index 564618d..6046c5d 100644
--- a/opends/src/server/org/opends/server/admin/Configuration.java
+++ b/opends/src/server/org/opends/server/admin/Configuration.java
@@ -29,6 +29,7 @@
+import org.opends.server.admin.server.ServerManagedObject;
import org.opends.server.types.DN;
@@ -40,7 +41,7 @@
public interface Configuration {
/**
- * Get the DN of the LDAP entry associated with this configuration.
+ * Gets the DN of the LDAP entry associated with this configuration.
*
* @return Returns the DN of the LDAP entry associated with this
* configuration.
@@ -50,7 +51,7 @@
/**
- * Get the configuration definition associated with this
+ * Gets the configuration definition associated with this
* configuration.
*
* @return Returns the configuration definition associated with this
@@ -62,9 +63,11 @@
/**
- * Get a property provider view of this configuration.
+ * Gets the underlying server-side managed object associated with
+ * this configuration.
*
- * @return Returns a property provider view of this configuration.
+ * @return Returns the underlying server-side managed object
+ * associated with this configuration.
*/
- PropertyProvider properties();
+ ServerManagedObject<? extends Configuration> managedObject();
}
--
Gitblit v1.10.0