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