From ff9755c40feeaf5a3208229d48b80b608ab7a68c Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 17 Jul 2007 08:14:43 +0000
Subject: [PATCH] This fix is the refactoring of the modrdn operation [issue 1180]
---
opends/src/server/org/opends/server/core/PluginConfigManager.java | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/PluginConfigManager.java b/opends/src/server/org/opends/server/core/PluginConfigManager.java
index 223c382..fda51ae 100644
--- a/opends/src/server/org/opends/server/core/PluginConfigManager.java
+++ b/opends/src/server/org/opends/server/core/PluginConfigManager.java
@@ -84,18 +84,21 @@
import org.opends.server.types.operation.PostOperationBindOperation;
import org.opends.server.types.operation.PostOperationCompareOperation;
import org.opends.server.types.operation.PostOperationDeleteOperation;
+import org.opends.server.types.operation.PostOperationModifyDNOperation;
import org.opends.server.types.operation.PostOperationModifyOperation;
import org.opends.server.types.operation.PostOperationSearchOperation;
import org.opends.server.types.operation.PostResponseAddOperation;
import org.opends.server.types.operation.PostResponseBindOperation;
import org.opends.server.types.operation.PostResponseCompareOperation;
import org.opends.server.types.operation.PostResponseDeleteOperation;
+import org.opends.server.types.operation.PostResponseModifyDNOperation;
import org.opends.server.types.operation.PostResponseModifyOperation;
import org.opends.server.types.operation.PostResponseSearchOperation;
import org.opends.server.types.operation.PreOperationAddOperation;
import org.opends.server.types.operation.PreOperationBindOperation;
import org.opends.server.types.operation.PreOperationCompareOperation;
import org.opends.server.types.operation.PreOperationDeleteOperation;
+import org.opends.server.types.operation.PreOperationModifyDNOperation;
import org.opends.server.types.operation.PreOperationModifyOperation;
import org.opends.server.types.operation.PreOperationSearchOperation;
import org.opends.server.types.operation.PreParseAddOperation;
@@ -2303,7 +2306,7 @@
* @return The result of processing the pre-parse modify DN plugins.
*/
public PreParsePluginResult invokePreParseModifyDNPlugins(
- ModifyDNOperation modifyDNOperation)
+ ModifyDNOperationBasis modifyDNOperation)
{
PreParsePluginResult result = null;
@@ -3037,7 +3040,7 @@
* @return The result of processing the pre-operation modify DN plugins.
*/
public PreOperationPluginResult invokePreOperationModifyDNPlugins(
- ModifyDNOperation modifyDNOperation)
+ PreOperationModifyDNOperation modifyDNOperation)
{
PreOperationPluginResult result = null;
@@ -3771,7 +3774,7 @@
* @return The result of processing the post-operation modify DN plugins.
*/
public PostOperationPluginResult invokePostOperationModifyDNPlugins(
- ModifyDNOperation modifyDNOperation)
+ PostOperationModifyDNOperation modifyDNOperation)
{
PostOperationPluginResult result = null;
@@ -4461,7 +4464,7 @@
* @return The result of processing the post-response modify DN plugins.
*/
public PostResponsePluginResult invokePostResponseModifyDNPlugins(
- ModifyDNOperation modifyDNOperation)
+ PostResponseModifyDNOperation modifyDNOperation)
{
PostResponsePluginResult result = null;
--
Gitblit v1.10.0