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