From fbda6e0892dcfcc8dd43d21f6fb134aabb8d0cac Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 03 Jul 2007 09:29:17 +0000
Subject: [PATCH] Commits the refactoring of the core server to provide support for proxy/distribution/virtual functionnalities. This includes the new set of local operations, as well as the workflow and networkgroup support.
---
opends/src/server/org/opends/server/core/PersistentSearch.java | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/PersistentSearch.java b/opends/src/server/org/opends/server/core/PersistentSearch.java
index 855f691..0a20345 100644
--- a/opends/src/server/org/opends/server/core/PersistentSearch.java
+++ b/opends/src/server/org/opends/server/core/PersistentSearch.java
@@ -27,19 +27,19 @@
package org.opends.server.core;
-
import java.util.ArrayList;
import java.util.Set;
import org.opends.server.controls.EntryChangeNotificationControl;
import org.opends.server.controls.PersistentSearchChangeType;
import org.opends.server.types.Control;
+import org.opends.server.types.DN;
import org.opends.server.types.DebugLogLevel;
import org.opends.server.types.DirectoryException;
-import org.opends.server.types.DN;
import org.opends.server.types.Entry;
import org.opends.server.types.SearchFilter;
import org.opends.server.types.SearchScope;
+import org.opends.server.workflowelement.localbackend.*;
import static org.opends.server.loggers.debug.DebugLogger.*;
import org.opends.server.loggers.debug.DebugTracer;
@@ -181,7 +181,7 @@
* @param addOperation The add operation that has been processed.
* @param entry The entry that was added.
*/
- public void processAdd(AddOperation addOperation, Entry entry)
+ public void processAdd(LocalBackendAddOperation addOperation, Entry entry)
{
// See if we care about add operations.
if (! changeTypes.contains(PersistentSearchChangeType.ADD))
@@ -296,7 +296,8 @@
* @param deleteOperation The delete operation that has been processed.
* @param entry The entry that was removed.
*/
- public void processDelete(DeleteOperation deleteOperation, Entry entry)
+ public void processDelete(LocalBackendDeleteOperation deleteOperation,
+ Entry entry)
{
// See if we care about delete operations.
if (! changeTypes.contains(PersistentSearchChangeType.DELETE))
@@ -412,7 +413,8 @@
* @param oldEntry The entry before the modification was applied.
* @param newEntry The entry after the modification was applied.
*/
- public void processModify(ModifyOperation modifyOperation, Entry oldEntry,
+ public void processModify(LocalBackendModifyOperation modifyOperation,
+ Entry oldEntry,
Entry newEntry)
{
// See if we care about modify operations.
--
Gitblit v1.10.0