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