Package org.infoglue.cms.security

Examples of org.infoglue.cms.security.AuthenticationModule.authenticateUser()


      authenticationModule.setCasServiceUrl(casServiceUrl);
      authenticationModule.setCasValidateUrl(casValidateUrl);
      authenticationModule.setCasProxyValidateUrl(casProxyValidateUrl);
      authenticationModule.setTransactionObject(db);
     
      String authenticatedUserName = authenticationModule.authenticateUser(request);
      logger.info("authenticatedUserName:" + authenticatedUserName);
      if(authenticatedUserName != null)
        principal = UserControllerProxy.getController(db).getUser(authenticatedUserName);
      logger.info("principal:" + principal);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.