blob: 9805f8bf592504ecd3b27dc80be09e3593aada4b [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.bnd.service;
2
Stuart McCulloch2286f232012-06-15 13:27:53 +00003import java.net.*;
4import java.util.*;
Stuart McCullochbb014372012-06-07 21:57:32 +00005
6public interface IndexProvider {
7
Stuart McCulloch2286f232012-06-15 13:27:53 +00008 List<URI> getIndexLocations() throws Exception;
Stuart McCullochbb014372012-06-07 21:57:32 +00009
10 Set<ResolutionPhase> getSupportedPhases();
11
12}