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

abobrov
24.14.2009 1edd5068bf0b63cbd67c615942ad5c545440d476
opends/src/server/org/opends/server/backends/jeb/RootContainer.java
@@ -637,22 +637,6 @@
  }
  /**
   * Get the environment lock stats of the JE environment used in this
   * root container.
   *
   * @param statsConfig The configuration to use for the EnvironmentStats
   *                    object.
   * @return The environment status of the JE environment.
   * @throws DatabaseException If an error occurs while retriving the stats
   *                           object.
   */
  public LockStats getEnvironmentLockStats(StatsConfig statsConfig)
      throws DatabaseException
  {
    return env.getLockStats(statsConfig);
  }
  /**
   * Get the environment transaction stats of the JE environment used
   * in this root container.
   *
@@ -1060,4 +1044,14 @@
    }
    return totalCleaned;
  }
  /**
   * Returns whether this container JE database environment is
   * open, valid and can be used.
   *
   * @return {@code true} if valid, or {@code false} otherwise.
   */
  public boolean isValid() {
    return env.isValid();
  }
}