Package org.josso.agent

Examples of org.josso.agent.SSOPartnerAppConfig


   public static String getPartnerAppId(AbstractSSOAgent jossoAgent, HttpServletRequest hreq)
   {
      String requester = null;

      // Try to obtain requester from ID of partnerApp
      SSOPartnerAppConfig partnerAppConfig = jossoAgent.getPartnerAppConfig(hreq.getServerName(), hreq.getContextPath());
      if (partnerAppConfig != null)
      {
         requester = partnerAppConfig.getId();
      }

      // Fallback to contextPath if previous failed
      if (requester == null)
      {
View Full Code Here

TOP

Related Classes of org.josso.agent.SSOPartnerAppConfig

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.