All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.oidc.token.propagation.runtime.OidcTokenPropagationBuildTimeConfig Maven / Gradle / Ivy

Go to download

Use JAX-RS Client filter to propagate the incoming Bearer access token or token acquired from Authorization Code Flow as HTTP Authorization Bearer token

There is a newer version: 3.15.2
Show newest version
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