01: package org.apache.lucene.store; 02: 03: import java.io.IOException; 04: 05: /** 06: * Allows to get the native directory implementations 07: * 08: * @author kimchy 09: */ 10: public interface DirectoryWrapper { 11: 12: Directory getWrappedDirectory(); 13: 14: void clearWrapper() throws IOException; 15: }