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