Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
bb014377de191fdec1fdca5c0a43e2abf324edc3
/
.
/
bundleplugin
/
src
/
main
/
java
/
aQute
/
bnd
/
service
/
ResourceHandle.java
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
;
}