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

Jean-Noel Rouvignac
07.12.2015 90a6ab6c63699343acf3adcd4346bce2f5665bdd
opendj-server-legacy/src/main/java/org/opends/server/backends/RebuildConfig.java
@@ -27,6 +27,7 @@
package org.opends.server.backends;
import java.util.ArrayList;
import java.util.List;
import org.opends.server.types.DN;
@@ -48,16 +49,10 @@
  private DN baseDN;
  private RebuildMode rebuildMode = RebuildMode.USER_DEFINED;
  /** The names of indexes to rebuild. */
  private ArrayList<String> rebuildList;
  private final List<String> rebuildList = new ArrayList<>();
  private String tmpDirectory;
  private boolean isClearDegradedState;
  /** Create a new rebuild configuration. */
  public RebuildConfig()
  {
    rebuildList = new ArrayList<String>();
  }
  /**
   * Get the base DN to rebuild.
   *
@@ -84,7 +79,7 @@
   *
   * @return The list of indexes to rebuild.
   */
  public ArrayList<String> getRebuildList()
  public List<String> getRebuildList()
  {
    return rebuildList;
  }