blob: 42abd9badd8cd91ed920b4b6fd037157f654d639 [file] [log] [blame]
package aQute.bnd.service;
import java.io.*;
public interface ResourceHandle {
public enum Location {
local, remote_cached, remote
}
String getName();
Location getLocation();
File request() throws IOException;
}