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