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(); }