From c1d882dae3327bd191bfeb6bab5c1288ba9dc572 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 07 Aug 2007 21:45:40 +0000
Subject: [PATCH] Add support for a new type of plugin which can be used to detect changes and take some action whenever a subordinate entry is modified as a result of a modify DN operation that targets an entry that has one or more children (i.e., a subtree move or subtree rename operation). At present, subordinate modify DN plugins are not allowed to change the contents of the entry as it is being moved/renamed, but an appropriate API is in place if we decide to add this functionality in the future.
---
opendj-sdk/opends/src/server/org/opends/server/api/plugin/SearchEntryPluginResult.java | 21 ++++++++++-----------
1 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/api/plugin/SearchEntryPluginResult.java b/opendj-sdk/opends/src/server/org/opends/server/api/plugin/SearchEntryPluginResult.java
index 93a2666..231c024 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/api/plugin/SearchEntryPluginResult.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/api/plugin/SearchEntryPluginResult.java
@@ -108,9 +108,9 @@
* Indicates whether the search result entry plugin terminated the
* client connection.
*
- * @return <CODE>true</CODE> if the search result entry plugin
- * terminated the client connection, or <CODE>false</CODE>
- * if not.
+ * @return {@code true} if the search result entry plugin
+ * terminated the client connection, or {@code false} if
+ * not.
*/
public boolean connectionTerminated()
{
@@ -123,9 +123,9 @@
* Indicates whether any further search result entry plugins should
* be invoked for this operation.
*
- * @return <CODE>true</CODE> if any further search result entry
- * plugins should be invoked for this operation, or
- * <CODE>false</CODE> if not.
+ * @return {@code true} if any further search result entry plugins
+ * should be invoked for this operation, or {@code false}
+ * if not.
*/
public boolean continuePluginProcessing()
{
@@ -138,9 +138,8 @@
* Indicates whether the associated search result entry should be
* sent to the client.
*
- * @return <CODE>true</CODE> if the associated search result entry
- * should be sent to the client, or <CODE>false</CODE> if
- * not.
+ * @return {@code true} if the associated search result entry
+ * should be sent to the client, or {@code false} if not.
*/
public boolean sendEntry()
{
@@ -154,8 +153,8 @@
* search operation (i.e., if it should continue looking for more
* matching entries).
*
- * @return <CODE>true</CODE> if processing on the search operation
- * should continue, or <CODE>false</CODE> if not.
+ * @return {@code true} if processing on the search operation
+ * should continue, or {@code false} if not.
*/
public boolean continueSearch()
{
--
Gitblit v1.10.0