Package org.jasig.cas.client.proxy

Examples of org.jasig.cas.client.proxy.Cas20ProxyRetriever


  /** Implementation of the proxy retriever. */
  private ProxyRetriever proxyRetriever;

  public NeusoftCasTicketValidator(String casServerUrlPrefix) {
    super(casServerUrlPrefix);
    this.proxyRetriever = new Cas20ProxyRetriever(casServerUrlPrefix);
  }
View Full Code Here


     * @param casServerUrlPrefix the CAS Server URL prefix.
     * @param urlFactory URL connection factory to use when communicating with the server
     */
    public Cas20ServiceTicketValidator(final String casServerUrlPrefix) {
        super(casServerUrlPrefix);
        this.proxyRetriever = new Cas20ProxyRetriever(casServerUrlPrefix, getEncoding(), getURLConnectionFactory());
    }
View Full Code Here

TOP

Related Classes of org.jasig.cas.client.proxy.Cas20ProxyRetriever

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.