blob: 5454c2d19cb5022598d66f09e94ebce7d5719a3e [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.bnd.service;
2
3import java.net.URL;
4import java.util.List;
5import java.util.Set;
6
7public interface IndexProvider {
8
9 List<URL> getIndexLocations() throws Exception;
10
11 Set<ResolutionPhase> getSupportedPhases();
12
13}