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/StartupPluginResult.java |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/plugin/StartupPluginResult.java b/opends/src/server/org/opends/server/api/plugin/StartupPluginResult.java
index 477a7eb..842be70 100644
--- a/opends/src/server/org/opends/server/api/plugin/StartupPluginResult.java
+++ b/opends/src/server/org/opends/server/api/plugin/StartupPluginResult.java
@@ -107,8 +107,8 @@
    * Indicates whether the startup plugin completed its processing
    * successfully.
    *
-   * @return  <CODE>true</CODE> if the startup plugin completed its
-   *          processing successfully, or <CODE>false</CODE> if not.
+   * @return  {@code true} if the startup plugin completed its
+   *          processing successfully, or {@code false} if not.
    */
   public boolean completedSuccessfully()
   {
@@ -121,9 +121,8 @@
    * Indicates whether the Directory Server should continue with its
    * startup process.
    *
-   * @return  <CODE>true</CODE> if the Directory Server should
-   *          continue with its startup process, or <CODE>false</CODE>
-   *          if not.
+   * @return  {@code true} if the Directory Server should continue
+   *          with its startup process, or {@code false} if not.
    */
   public boolean continueStartup()
   {
@@ -151,8 +150,8 @@
    * startup plugin.
    *
    * @return  The human-readable error message generated by the
-   *          startup plugin, or <CODE>null</CODE> if there is no
-   *          error message.
+   *          startup plugin, or {@code null} if there is no error
+   *          message.
    */
   public String getErrorMessage()
   {

--
Gitblit v1.10.0