From c22404d2ae49ed50c10f0da2f8d7ed032ebd5fed Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 04 Sep 2007 23:54:02 +0000
Subject: [PATCH] Add a new LDIF connection handler, which can be used to watch for new LDIF files to be created in a directory, at which point the changes contained in those LDIF files will be processed by the server using internal operations. This can potentially be used to make configuration changes or invoke tasks if the server is unresponsive to external clients (e.g., all worker threads are busy).
---
opends/src/server/org/opends/server/util/ChangeRecordEntry.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ChangeRecordEntry.java b/opends/src/server/org/opends/server/util/ChangeRecordEntry.java
index e97b8d4..fdbc5af 100644
--- a/opends/src/server/org/opends/server/util/ChangeRecordEntry.java
+++ b/opends/src/server/org/opends/server/util/ChangeRecordEntry.java
@@ -79,5 +79,14 @@
* @return The name of the change operation type.
*/
public abstract ChangeOperationType getChangeOperationType();
+
+
+
+ /**
+ * Retrieves a string representation of this change record entry.
+ *
+ * @return A string representation of this change record entry.
+ */
+ public abstract String toString();
}
--
Gitblit v1.10.0