Class BaseOktaProperties

java.lang.Object
org.apereo.cas.configuration.model.support.okta.BaseOktaProperties
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BaseOktaApiProperties, OktaAuthenticationProperties

@RequiresModule(name="cas-server-support-okta-authentication") public abstract class BaseOktaProperties extends Object implements Serializable
Since:
6.2.0
See Also:
  • Constructor Details

    • BaseOktaProperties

      public BaseOktaProperties()
  • Method Details

    • getOrder

      public int getOrder()
      The order of this authentication handler in the chain.
    • getProxyHost

      public String getProxyHost()
      Send requests via a proxy; define the hostname.
    • getProxyPort

      public int getProxyPort()
      Send requests via a proxy; define the proxy port. Negative/zero values should deactivate the proxy configuration for the http client.
    • getProxyUsername

      public String getProxyUsername()
      Send requests via a proxy; define the proxy username.
    • getProxyPassword

      public String getProxyPassword()
      Send requests via a proxy; define the proxy password.
    • getConnectionTimeout

      public int getConnectionTimeout()
      Connection timeout in milliseconds.
    • getOrganizationUrl

      public String getOrganizationUrl()
      Okta domain.
    • setOrder

      public BaseOktaProperties setOrder(int order)
      The order of this authentication handler in the chain.
      Returns:
      this.
    • setProxyHost

      public BaseOktaProperties setProxyHost(String proxyHost)
      Send requests via a proxy; define the hostname.
      Returns:
      this.
    • setProxyPort

      public BaseOktaProperties setProxyPort(int proxyPort)
      Send requests via a proxy; define the proxy port. Negative/zero values should deactivate the proxy configuration for the http client.
      Returns:
      this.
    • setProxyUsername

      public BaseOktaProperties setProxyUsername(String proxyUsername)
      Send requests via a proxy; define the proxy username.
      Returns:
      this.
    • setProxyPassword

      public BaseOktaProperties setProxyPassword(String proxyPassword)
      Send requests via a proxy; define the proxy password.
      Returns:
      this.
    • setConnectionTimeout

      public BaseOktaProperties setConnectionTimeout(int connectionTimeout)
      Connection timeout in milliseconds.
      Returns:
      this.
    • setOrganizationUrl

      public BaseOktaProperties setOrganizationUrl(String organizationUrl)
      Okta domain.
      Returns:
      this.