From aaff8bbe83e02bba861c5cf1c6645dedc4e0ac1d 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.
---
opends/src/server/org/opends/server/api/plugin/IntermediateResponsePluginResult.java | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/plugin/IntermediateResponsePluginResult.java b/opends/src/server/org/opends/server/api/plugin/IntermediateResponsePluginResult.java
index 4564159..36a660c 100644
--- a/opends/src/server/org/opends/server/api/plugin/IntermediateResponsePluginResult.java
+++ b/opends/src/server/org/opends/server/api/plugin/IntermediateResponsePluginResult.java
@@ -113,9 +113,9 @@
* Indicates whether the intermediate response plugin terminated the
* client connection.
*
- * @return <CODE>true</CODE> if the intermediate response plugin
- * terminated the client connection, or <CODE>false</CODE>
- * if not.
+ * @return {@code true} if the intermediate response plugin
+ * terminated the client connection, or {@code false} if
+ * not.
*/
public boolean connectionTerminated()
{
@@ -128,9 +128,9 @@
* Indicates whether any further intermediate response plugins
* should be invoked for this operation.
*
- * @return <CODE>true</CODE> if any further intermediate response
+ * @return {@code true} if any further intermediate response
* plugins should be invoked for this operation, or
- * <CODE>false</CODE> if not.
+ * {@code false} if not.
*/
public boolean continuePluginProcessing()
{
@@ -143,9 +143,9 @@
* Indicates whether the associated intermediate response message
* should be sent to the client.
*
- * @return <CODE>true</CODE> if the associated intermediate
- * response message should be sent to the client, or
- * <CODE>false</CODE> if not.
+ * @return {@code true} if the associated intermediate response
+ * message should be sent to the client, or {@code false}
+ * if not.
*/
public boolean sendIntermediateResponse()
{
@@ -158,8 +158,8 @@
* Indicates whether processing should continue for the associated
* operation.
*
- * @return <CODE>true</CODE> if processing on the operation should
- * continue, or <CODE>false</CODE> if not.
+ * @return {@code true} if processing on the operation should
+ * continue, or {@code false} if not.
*/
public boolean continueOperation()
{
--
Gitblit v1.10.0