From 836e359af22b0362453e9fabcb3f8a47e2780e8e Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Tue, 22 May 2007 14:35:47 +0000
Subject: [PATCH] Various improvements and refactorings of the admin framework client API, including:
---
opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestChildCfgClient.java | 22 +++++++++++++++++++++-
1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/server/TestChildCfgClient.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestChildCfgClient.java
similarity index 72%
rename from opends/tests/unit-tests-testng/src/server/org/opends/server/admin/server/TestChildCfgClient.java
rename to opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestChildCfgClient.java
index bcc0607..ea53db8 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/server/TestChildCfgClient.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/admin/TestChildCfgClient.java
@@ -24,7 +24,7 @@
*
* Portions Copyright 2007 Sun Microsystems, Inc.
*/
-package org.opends.server.admin.server;
+package org.opends.server.admin;
@@ -43,4 +43,24 @@
*/
ManagedObjectDefinition<? extends TestChildCfgClient, ? extends TestChildCfg> definition();
+
+
+ /**
+ * Get the "heartbeat-interval" property.
+ *
+ * @return Returns the value of the "heartbeat-interval" property.
+ */
+ long getHeartbeatInterval();
+
+
+
+ /**
+ * Set the "heartbeat-interval" property.
+ *
+ * @param value
+ * The value of the "heartbeat-interval" property.
+ * @throws IllegalPropertyValueException
+ * If the new value is invalid.
+ */
+ void setHeartbeatInterval(Long value) throws IllegalPropertyValueException;
}
--
Gitblit v1.10.0