Package com.stimulus.archiva.security.realm

Examples of com.stimulus.archiva.security.realm.CorpGovPrincipal


   
      long s = (new Date()).getTime();
  
  
      remoteHost = ActionContext.getActionContext().getRequest().getRemoteHost();
      CorpGovPrincipal cp = (CorpGovPrincipal)ActionContext.getActionContext().getRequest().getUserPrincipal();
      if (cp!=null) {
          userName = cp.getName();
          userRole = cp.getRole();
      } else {
          if (ConfigurationService.getConfig().getConsoleAuthenticate()) {
              logger.warn("search denied. attempted search by unknown user. ");
              long e = (new Date()).getTime();
              searchTime = e - s ;
View Full Code Here

TOP

Related Classes of com.stimulus.archiva.security.realm.CorpGovPrincipal

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.