Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame^] | 1 | package aQute.bnd.service; |
2 | |||||
3 | import java.net.URL; | ||||
4 | import java.util.List; | ||||
5 | import java.util.Set; | ||||
6 | |||||
7 | public interface IndexProvider { | ||||
8 | |||||
9 | List<URL> getIndexLocations() throws Exception; | ||||
10 | |||||
11 | Set<ResolutionPhase> getSupportedPhases(); | ||||
12 | |||||
13 | } |