if( map.size() == 1 ) {
// Got one - wire it in
Map.Entry entry = (Map.Entry) map.entrySet().iterator().next();
String name = (String) entry.getKey();
AuthenticationManager am = (AuthenticationManager) entry.getValue();
setAuthenticationManager( am );
success = true;
if( logger.isInfoEnabled() ) {