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

Jean-Noel Rouvignac
18.04.2014 be9f94f921957835e36578e31b5905a91de24cd3
opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/Storage.java
@@ -23,15 +23,12 @@
 *
 *      Copyright 2014 ForgeRock AS
 */
package org.opends.server.backends.pluggable.spi;
import java.io.Closeable;
import org.opends.server.admin.std.server.PersistitBackendCfg;
public interface Storage extends Closeable
{
  void initialize(PersistitBackendCfg cfg) throws Exception;
@@ -44,6 +41,10 @@
  void write(WriteOperation updateTransaction) throws Exception;
  void closeTree(TreeName treeName);
  boolean isValid();
  @Override
  void close();
}