blob: be7f79b221df17745728849591d31cbcdae97c73 [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;
}