io.quarkus.oidc.runtime.OidcBuildTimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-oidc Show documentation
Show all versions of quarkus-oidc Show documentation
Secure your applications with OpenID Connect Adapter and IDP such as Keycloak
package io.quarkus.oidc.runtime;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigRoot;
/**
* Build time configuration for OIDC.
*/
@ConfigRoot
public class OidcBuildTimeConfig {
/**
* If the OIDC extension is enabled.
*/
@ConfigItem(defaultValue = "true")
public boolean enabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy