blob: d08ea2cb97cca016f67c0a2d229bad7eb1b87160 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.service;
2
3import java.io.File;
4import java.io.IOException;
5
6public interface ResourceHandle {
7
8 public enum Location { local, remote_cached, remote };
9
10 String getName();
11 Location getLocation();
12 File request() throws IOException;
13}