Package io.quarkus.oidc.client.runtime
Interface OidcClientBuildTimeConfig
@ConfigMapping(prefix="quarkus.oidc-client")
@ConfigRoot(phase=BUILD_AND_RUN_TIME_FIXED)
public interface OidcClientBuildTimeConfig
Build time configuration for OIDC client.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()If the OIDC client extension is enabled.booleanWhether the OIDC Client extension should automatically register a health check for OIDC clients when a Health Check capability is present.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If the OIDC client extension is enabled. -
healthEnabled
@WithName("health.enabled") @WithDefault("false") boolean healthEnabled()Whether the OIDC Client extension should automatically register a health check for OIDC clients when a Health Check capability is present.
-