Class OidcCommonConfig.Proxy

java.lang.Object
io.quarkus.oidc.common.runtime.OidcCommonConfig.Proxy
All Implemented Interfaces:
OidcCommonConfig.Proxy
Enclosing class:
OidcCommonConfig

@Deprecated(since="3.18") public static class OidcCommonConfig.Proxy extends Object implements OidcCommonConfig.Proxy
Deprecated.
use OidcCommonConfigBuilder to create the Proxy config
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    Deprecated.
    The host name or IP address of the Proxy.
    Note: If the OIDC adapter requires a Proxy to talk with the OIDC server (Provider), set this value to enable the usage of a Proxy.
    Deprecated.
    The password, if the Proxy needs authentication.
    int
    Deprecated.
    The port number of the Proxy.
    Deprecated.
    The username, if the Proxy needs authentication.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    The host name or IP address of the Proxy.
    Note: If the OIDC adapter requires a Proxy to talk with the OIDC server (Provider), set this value to enable the usage of a Proxy.
    Deprecated.
    The password, if the Proxy needs authentication.
    int
    Deprecated.
    The port number of the Proxy.
    Deprecated.
    The username, if the Proxy needs authentication.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • host

      public Optional<String> host
      Deprecated.
      The host name or IP address of the Proxy.
      Note: If the OIDC adapter requires a Proxy to talk with the OIDC server (Provider), set this value to enable the usage of a Proxy.
    • port

      public int port
      Deprecated.
      The port number of the Proxy. The default value is `80`.
    • username

      public Optional<String> username
      Deprecated.
      The username, if the Proxy needs authentication.
    • password

      public Optional<String> password
      Deprecated.
      The password, if the Proxy needs authentication.
  • Constructor Details

    • Proxy

      public Proxy()
      Deprecated.
  • Method Details