* @return a map of classifier names to requested interface type
*/
public Map<String, HolidaySource> getHolidaySources() {
Map<String, HolidaySource> result = new LinkedHashMap<String, HolidaySource>();
for (ComponentInfo info : getComponentServer().getComponentInfos(HolidaySource.class)) {
result.put(info.getClassifier(), new RemoteHolidaySource(info.getUri()));
}
return result;
}