| | |
| | | import org.forgerock.opendj.ldap.ByteSequence; |
| | | import org.forgerock.opendj.ldap.ByteString; |
| | | import org.opends.server.backends.pluggable.spi.Cursor; |
| | | import org.opends.server.backends.pluggable.spi.Importer; |
| | | import org.opends.server.backends.pluggable.spi.ReadableTransaction; |
| | | import org.opends.server.backends.pluggable.spi.WriteableTransaction; |
| | | |
| | |
| | | int getIndexEntryLimit(); |
| | | |
| | | // Ignores trusted state. |
| | | void importPut(WriteableTransaction txn, ImportIDSet idsToBeAdded); |
| | | void importPut(Importer importer, ImportIDSet idsToBeAdded); |
| | | |
| | | // Ignores trusted state. |
| | | void importRemove(WriteableTransaction txn, ImportIDSet idsToBeRemoved); |
| | | void importRemove(Importer importer, ImportIDSet idsToBeRemoved); |
| | | |
| | | boolean isTrusted(); |
| | | |