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