io.quarkus.oidc.token.propagation.runtime.OidcTokenPropagationBuildTimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-oidc-token-propagation Show documentation
Show all versions of quarkus-oidc-token-propagation Show documentation
Use JAX-RS Client filter to propagate the incoming Bearer access token or token acquired from Authorization Code Flow as HTTP Authorization Bearer token
package io.quarkus.oidc.token.propagation.runtime;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigRoot;
/**
* Build time configuration for OIDC Token Propagation.
*/
@ConfigRoot
public class OidcTokenPropagationBuildTimeConfig {
/**
* If the OIDC Token Propagation is enabled.
*/
@ConfigItem(defaultValue = "true")
public boolean enabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy