Package io.quarkus.oidc.common.runtime
Class OidcCommonConfig.Proxy
- java.lang.Object
-
- io.quarkus.oidc.common.runtime.OidcCommonConfig.Proxy
-
- Enclosing class:
- OidcCommonConfig
public static class OidcCommonConfig.Proxy extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<String>hostThe host (name or IP address) of the Proxy.
Note: If OIDC adapter needs to use a Proxy to talk with OIDC server (Provider), then at least the "host" config item must be configured to enable the usage of a Proxy.Optional<String>passwordThe password, if Proxy needs authentication.intportThe port number of the Proxy.Optional<String>usernameThe username, if Proxy needs authentication.
-
Constructor Summary
Constructors Constructor Description Proxy()
-
-
-
Field Detail
-
host
@ConfigItem public Optional<String> host
The host (name or IP address) of the Proxy.
Note: If OIDC adapter needs to use a Proxy to talk with OIDC server (Provider), then at least the "host" config item must be configured to enable the usage of a Proxy.
-
port
@ConfigItem(defaultValue="80") public int port
The port number of the Proxy. Default value is 80.
-
username
@ConfigItem public Optional<String> username
The username, if Proxy needs authentication.
-
password
@ConfigItem public Optional<String> password
The password, if Proxy needs authentication.
-
-