blob: fe12712e5b5521d2cf5ff626406b090664c800fb [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.service;
2
3import java.io.IOException;
4import java.net.URL;
5import java.util.Collection;
6import java.util.Set;
7
8public interface OBRIndexProvider {
9 Collection<URL> getOBRIndexes() throws IOException;
10 Set<OBRResolutionMode> getSupportedModes();
11}