7172737475767778798081
// The caller should clear the password in the returned PasswordUser, // so we need to return a copy PasswordUser user = _userMap.get(userName); if (user != null) return user.copy(); else return null; } /**