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/LDIFPluginResult.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/plugin/LDIFPluginResult.java b/opends/src/server/org/opends/server/api/plugin/LDIFPluginResult.java
index f94972e..95d6570 100644
--- a/opends/src/server/org/opends/server/api/plugin/LDIFPluginResult.java
+++ b/opends/src/server/org/opends/server/api/plugin/LDIFPluginResult.java
@@ -90,9 +90,9 @@
    * Indicates whether any further LDIF import/export plugins should
    * be invoked for the associated entry.
    *
-   * @return  <CODE>true</CODE> if any further LDIF import/export
-   *          plugins should be invoked for the associated entry, or
-   *          <CODE>false</CODE> if not.
+   * @return  {@code true} if any further LDIF import/export plugins
+   *          should be invoked for the associated entry, or
+   *          {@code false} if not.
    */
   public boolean continuePluginProcessing()
   {
@@ -105,8 +105,8 @@
    * Indicates whether the associated entry should still be
    * imported/exported.
    *
-   * @return  <CODE>true</CODE> if the associated entry should still
-   *          be imported/exported, or <CODE>false</CODE> if not.
+   * @return  {@code true} if the associated entry should still be
+   *          imported/exported, or {@code false} if not.
    */
   public boolean continueEntryProcessing()
   {

--
Gitblit v1.10.0