Tabnine Logo
Cas20ServiceTicketValidator.setRenew
Code IndexAdd Tabnine to your IDE (free)

How to use
setRenew
method
in
org.jasig.cas.client.validation.Cas20ServiceTicketValidator

Best Java code snippets using org.jasig.cas.client.validation.Cas20ServiceTicketValidator.setRenew (Showing top 8 results out of 315)

origin: apereo/java-cas-client

  public void start() throws LifecycleException {
    super.start();
    this.ticketValidator = new Cas20ServiceTicketValidator(getCasServerUrlPrefix());
    if (getEncoding() != null) {
      this.ticketValidator.setEncoding(getEncoding());
    }
    this.ticketValidator.setProxyCallbackUrl(getProxyCallbackUrl());
    this.ticketValidator.setProxyGrantingTicketStorage(ProxyCallbackValve.getProxyGrantingTicketStorage());
    this.ticketValidator.setRenew(isRenew());
    lifecycle.fireLifecycleEvent(AFTER_START_EVENT, null);
    logger.info("Startup completed.");
  }
}
origin: apereo/java-cas-client

validator.setRenew(getBoolean(ConfigurationKeys.RENEW));
validator.setEncoding(getString(ConfigurationKeys.ENCODING));
origin: org.jasig.cas/com.springsource.org.jasig.cas.client

validator.setProxyGrantingTicketStorage(this.proxyGrantingTicketStorage);
validator.setProxyRetriever(new Cas20ProxyRetriever(casServerUrlPrefix, getPropertyFromInitParams(filterConfig, "encoding", null)));
validator.setRenew(parseBoolean(getPropertyFromInitParams(filterConfig, "renew", "false")));
validator.setEncoding(getPropertyFromInitParams(filterConfig, "encoding", null));
origin: apereo/java-cas-client

  protected void startInternal() throws LifecycleException {
    super.startInternal();
    this.ticketValidator = new Cas20ServiceTicketValidator(getCasServerUrlPrefix());
    if (getEncoding() != null) {
      this.ticketValidator.setEncoding(getEncoding());
    }
    this.ticketValidator.setProxyCallbackUrl(getProxyCallbackUrl());
    this.ticketValidator.setProxyGrantingTicketStorage(ProxyCallbackValve.getProxyGrantingTicketStorage());
    this.ticketValidator.setRenew(isRenew());
  }
}
origin: apereo/java-cas-client

  protected void startInternal() throws LifecycleException {
    super.startInternal();
    this.ticketValidator = new Cas20ServiceTicketValidator(getCasServerUrlPrefix());
    if (getEncoding() != null) {
      this.ticketValidator.setEncoding(getEncoding());
    }
    this.ticketValidator.setProxyCallbackUrl(getProxyCallbackUrl());
    this.ticketValidator.setProxyGrantingTicketStorage(ProxyCallbackValve.getProxyGrantingTicketStorage());
    this.ticketValidator.setRenew(isRenew());
  }
}
origin: apereo/java-cas-client

  protected void startInternal() throws LifecycleException {
    super.startInternal();
    this.ticketValidator = new Cas20ServiceTicketValidator(getCasServerUrlPrefix());
    if (getEncoding() != null) {
      this.ticketValidator.setEncoding(getEncoding());
    }
    this.ticketValidator.setProxyCallbackUrl(getProxyCallbackUrl());
    this.ticketValidator.setProxyGrantingTicketStorage(ProxyCallbackValve.getProxyGrantingTicketStorage());
    this.ticketValidator.setRenew(isRenew());
  }
}
origin: org.jasig.cas.client/cas-client-integration-tomcat-v7

  protected void startInternal() throws LifecycleException {
    super.startInternal();
    this.ticketValidator = new Cas20ServiceTicketValidator(getCasServerUrlPrefix());
    if (getEncoding() != null) {
      this.ticketValidator.setEncoding(getEncoding());
    }
    this.ticketValidator.setProxyCallbackUrl(getProxyCallbackUrl());
    this.ticketValidator.setProxyGrantingTicketStorage(ProxyCallbackValve.getProxyGrantingTicketStorage());
    this.ticketValidator.setRenew(isRenew());
  }
}
origin: apereo/java-cas-client

@Before
public void setUp() throws Exception {
  this.proxyGrantingTicketStorage = getProxyGrantingTicketStorage();
  this.ticketValidator = new Cas20ServiceTicketValidator(CONST_CAS_SERVER_URL_PREFIX + "8088");
  this.ticketValidator.setProxyCallbackUrl("test");
  this.ticketValidator.setProxyGrantingTicketStorage(getProxyGrantingTicketStorage());
  this.ticketValidator.setProxyRetriever(getProxyRetriever());
  this.ticketValidator.setRenew(true);
}
org.jasig.cas.client.validationCas20ServiceTicketValidatorsetRenew

Popular methods of Cas20ServiceTicketValidator

  • <init>
    Constructs an instance of the CAS 2.0 Service Ticket Validator with the supplied CAS server url pref
  • setProxyCallbackUrl
  • setProxyGrantingTicketStorage
  • setEncoding
  • setProxyRetriever
  • customParseResponse
    Template method if additional custom parsing (such as Proxying) needs to be done.
  • extractCustomAttributes
    Default attribute parsing of attributes that look like the following:
  • getEncoding
  • setCustomParameters
  • encodeUrl
  • getURLConnectionFactory
  • parseAuthenticationFailureFromResponse
  • getURLConnectionFactory,
  • parseAuthenticationFailureFromResponse,
  • parsePrincipalFromResponse,
  • parseProxyGrantingTicketFromResponse,
  • setHostnameVerifier,
  • setURLConnectionFactory,
  • validate

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • runOnUiThread (Activity)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JComboBox (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now