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