mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
08.19.2006 bd6628bda9f2f7979e60120b57579366bc56b0a7
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/IndexIteratorAllIds.java
@@ -35,9 +35,12 @@
{
  /**
   * Create a new iterator over all the entry IDs in the backend.
   *
   * @param rootContainer The root container where IDs from this
   *                     iterator will cover.
   */
  public IndexIteratorAllIds()
  public IndexIteratorAllIds(RootContainer rootContainer)
  {
    super(EntryID.getLowest(), EntryID.getHighest());
    super(rootContainer.getLowestEntryID(), rootContainer.getHighestEntryID());
  }
}