Package io.quarkus.oidc.deployment
Interface OidcBuildTimeConfig
@ConfigMapping(prefix="quarkus.oidc")
@ConfigRoot
public interface OidcBuildTimeConfig
Build time configuration for OIDC.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanEnable the registration of the Default TokenIntrospection and UserInfo Cache implementation bean.devui()OIDC Dev UI configuration which is effective in dev mode only.booleanenabled()If the OIDC extension is enabled.booleanWhether the OIDC extension should automatically register a health check for OIDC tenants when a Health Check capability is present.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If the OIDC extension is enabled. -
devui
OIDC Dev UI configuration which is effective in dev mode only. -
defaultTokenCacheEnabled
@WithDefault("true") boolean defaultTokenCacheEnabled()Enable the registration of the Default TokenIntrospection and UserInfo Cache implementation bean. Note: This only enables the default implementation. It requires configuration to be activated. SeeOidcConfig.tokenCache(). -
healthEnabled
@WithName("health.enabled") @WithDefault("false") boolean healthEnabled()Whether the OIDC extension should automatically register a health check for OIDC tenants when a Health Check capability is present.
-