| | |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | |
| | | import org.forgerock.opendj.ldap.ByteString; |
| | | import org.forgerock.opendj.ldap.ConditionResult; |
| | | import org.opends.server.backends.jeb.importLDIF.ImportIDSet; |
| | | import org.opends.server.types.DirectoryException; |
| | |
| | | * @param state |
| | | * The state database to persist index state info. |
| | | * @param env |
| | | * The JE Environemnt |
| | | * The JE Environment |
| | | * @param entryContainer |
| | | * The database entryContainer holding this index. |
| | | * @throws DatabaseException |
| | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) |
| | | public boolean insertID(IndexBuffer buffer, ByteString keyBytes, |
| | | EntryID entryID) |
| | | { |
| | | return true; |
| | | } |
| | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) |
| | | public boolean removeID(IndexBuffer buffer, ByteString keyBytes, |
| | | EntryID entryID) |
| | | { |
| | | return true; |
| | | } |
| | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public void delete(IndexBuffer buffer, byte[] keyBytes) |
| | | public void delete(IndexBuffer buffer, ByteString keyBytes) |
| | | { |
| | | // Do nothing. |
| | | } |