A user within the user management system. Support is provided for external users as well as passwords.
229230231232233234235236237238239
if (getUserSource() == null) { // No user source. Allow all connections. return UserPrincipal.getLocalUser(userId); } OGUser ogUser = getOGUser(userId); if (ogUser == null) { s_logger.info("Not allowing login for {} because no user in UserSource", userId); return null; }