| | |
| | | */ |
| | | package org.opends.server.backends.pluggable; |
| | | |
| | | import static org.opends.server.backends.pluggable.EntryIDSet.newDefinedSet; |
| | | |
| | | import java.util.Iterator; |
| | | import java.util.LinkedHashMap; |
| | | import java.util.Map; |
| | |
| | | { |
| | | if (this.addedIDs == null) |
| | | { |
| | | this.addedIDs = new EntryIDSet(keyBytes, null); |
| | | this.addedIDs = newDefinedSet(); |
| | | } |
| | | this.addedIDs.add(entryID); |
| | | } |
| | |
| | | { |
| | | if (this.deletedIDs == null) |
| | | { |
| | | this.deletedIDs = new EntryIDSet(keyBytes, null); |
| | | this.deletedIDs = newDefinedSet(); |
| | | } |
| | | this.deletedIDs.add(entryID); |
| | | } |