blob: 7bb0fd6a52dc80c8ea9105de4c7a123d019b6712 [file] [log] [blame]
package edu.uci.ics.asterix.common.dataflow;
import edu.uci.ics.hyracks.storage.am.common.dataflow.IIndex;
import edu.uci.ics.hyracks.storage.am.common.dataflow.IIndexRegistryProvider;
import edu.uci.ics.hyracks.storage.common.IStorageManagerInterface;
public interface IAsterixApplicationContextInfo {
public IIndexRegistryProvider<IIndex> getIndexRegistryProvider();
public IStorageManagerInterface getStorageManagerInterface();
}