Package org.gatein.sso.agent.opensso

Examples of org.gatein.sso.agent.opensso.OpenSSOAgent


    protected OpenSSOAgent getOpenSSOAgent()
    {
       if (this.openSSOAgent == null)
       {
          OpenSSOAgent openssoAgent = (OpenSSOAgent)getExoContainer().getComponentInstanceOfType(OpenSSOAgent.class);
          if (openssoAgent == null)
          {
             throw new IllegalStateException("OpenSSOAgent component not provided in PortalContainer");
          }

          openssoAgent.setServerUrl(ssoServerUrl);
          openssoAgent.setCookieName(ssoCookieName);
          this.openSSOAgent = openssoAgent;
       }

       return this.openSSOAgent;
    }
View Full Code Here

TOP

Related Classes of org.gatein.sso.agent.opensso.OpenSSOAgent

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.