package usda.weru.remoteDataAccess;

import java.io.IOException;
import java.util.ArrayList;

/**
 *
 * @author mhaas
 */
public interface RdaBgCacheContIf {
    public void setInterfaceName (String interfaceName);
    public boolean cacheWriteCatalog (ArrayList<String> catalog) throws IOException;
    public ArrayList<String> cacheReadCatalog () throws IOException;
    public void clearCacheDir ();
}
