Package com.opengamma.core.user

Examples of com.opengamma.core.user.OGUser


    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;
    }
   
View Full Code Here

TOP

Related Classes of com.opengamma.core.user.OGUser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.