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

boli
08.19.2006 5c3196a7dc35588f22aa086e4e5cf6a563ec0de0
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());
  }
}