From 9ff093de3e9f067d08bcc6d3134121128974a681 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 11 Apr 2014 13:47:56 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support

---
 opendj3-server-dev/src/server/org/opends/server/backends/jeb/NullIndex.java |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/jeb/NullIndex.java b/opendj3-server-dev/src/server/org/opends/server/backends/jeb/NullIndex.java
index 8d68805..e61c146 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/jeb/NullIndex.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/jeb/NullIndex.java
@@ -29,6 +29,7 @@
 
 import org.forgerock.opendj.ldap.ByteString;
 import org.forgerock.opendj.ldap.ConditionResult;
+import org.forgerock.opendj.ldap.spi.IndexingOptions;
 import org.opends.server.backends.jeb.importLDIF.ImportIDSet;
 import org.opends.server.types.DirectoryException;
 import org.opends.server.types.Entry;
@@ -228,7 +229,7 @@
 
   /** {@inheritDoc} */
   @Override
-  public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry)
+  public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry, IndexingOptions options)
       throws DatabaseException, DirectoryException
   {
     return true;
@@ -238,7 +239,7 @@
 
   /** {@inheritDoc} */
   @Override
-  public boolean addEntry(Transaction txn, EntryID entryID, Entry entry)
+  public boolean addEntry(Transaction txn, EntryID entryID, Entry entry, IndexingOptions options)
       throws DatabaseException, DirectoryException
   {
     return true;
@@ -248,7 +249,7 @@
 
   /** {@inheritDoc} */
   @Override
-  public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry)
+  public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry, IndexingOptions options)
       throws DatabaseException, DirectoryException
   {
     // Do nothing.
@@ -258,7 +259,7 @@
 
   /** {@inheritDoc} */
   @Override
-  public void removeEntry(Transaction txn, EntryID entryID, Entry entry)
+  public void removeEntry(Transaction txn, EntryID entryID, Entry entry, IndexingOptions options)
       throws DatabaseException, DirectoryException
   {
     // Do nothing.
@@ -269,7 +270,7 @@
   /** {@inheritDoc} */
   @Override
   public void modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry,
-      Entry newEntry, List<Modification> mods) throws DatabaseException
+      Entry newEntry, List<Modification> mods, IndexingOptions options) throws DatabaseException
   {
     // Do nothing.
   }
@@ -279,7 +280,7 @@
   /** {@inheritDoc} */
   @Override
   public void modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry,
-      Entry newEntry, List<Modification> mods) throws DatabaseException
+      Entry newEntry, List<Modification> mods, IndexingOptions options) throws DatabaseException
   {
     // Do nothing.
   }

--
Gitblit v1.10.0