Interface OidcCommonConfig.Proxy

All Known Implementing Classes:
OidcCommonConfig.Proxy
Enclosing interface:
OidcCommonConfig

public static interface OidcCommonConfig.Proxy
  • Method Summary

    Modifier and Type
    Method
    Description
    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.
    The password, if the Proxy needs authentication.
    int
    The port number of the Proxy.
    The username, if the Proxy needs authentication.
  • Method Details

    • host

      Optional<String> host()
      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

      @WithDefault("80") int port()
      The port number of the Proxy. The default value is `80`.
    • username

      Optional<String> username()
      The username, if the Proxy needs authentication.
    • password

      Optional<String> password()
      The password, if the Proxy needs authentication.