blob: 42abd9badd8cd91ed920b4b6fd037157f654d639 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.service;
2
3import java.io.*;
4
5public interface ResourceHandle {
Stuart McCulloch4482c702012-06-15 13:27:53 +00006
7 public enum Location {
8 local, remote_cached, remote
9 }
10
Stuart McCullochf3173222012-06-07 21:57:32 +000011 String getName();
Stuart McCulloch4482c702012-06-15 13:27:53 +000012
Stuart McCullochf3173222012-06-07 21:57:32 +000013 Location getLocation();
Stuart McCulloch4482c702012-06-15 13:27:53 +000014
Stuart McCullochf3173222012-06-07 21:57:32 +000015 File request() throws IOException;
16}