| | |
| | | |
| | | 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; |
| | |
| | | |
| | | /** {@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; |
| | |
| | | |
| | | /** {@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; |
| | |
| | | |
| | | /** {@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. |
| | |
| | | |
| | | /** {@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. |
| | |
| | | /** {@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. |
| | | } |
| | |
| | | /** {@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. |
| | | } |