From 887d477fa8daf523b8411461451968d2c58274f4 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Mon, 14 Jan 2008 10:43:58 +0000
Subject: [PATCH] Partial fix for issue 2661 - public APIs must not reference private classes.
---
opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfg.java | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfg.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfg.java
index 1105419..95cae04 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfg.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestParentCfg.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2007 Sun Microsystems, Inc.
+ * Portions Copyright 2007-2008 Sun Microsystems, Inc.
*/
package org.opends.server.admin;
@@ -30,7 +30,6 @@
import java.util.SortedSet;
import org.opends.server.admin.Configuration;
-import org.opends.server.admin.ManagedObjectDefinition;
import org.opends.server.admin.server.ConfigurationAddListener;
import org.opends.server.admin.server.ConfigurationChangeListener;
import org.opends.server.admin.server.ConfigurationDeleteListener;
@@ -49,11 +48,11 @@
public interface TestParentCfg extends Configuration {
/**
- * Get the configuration definition associated with this Test Parent.
+ * Get the configuration class associated with this Test Parent.
*
- * @return Returns the configuration definition associated with this Test Parent.
+ * @return Returns the configuration class associated with this Test Parent.
*/
- ManagedObjectDefinition<? extends TestParentCfgClient, ? extends TestParentCfg> definition();
+ Class<? extends TestParentCfg> configurationClass();
--
Gitblit v1.10.0