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