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

io.quarkiverse.renarde.configuration.RenardeConfig Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.renarde.configuration;

import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;

@ConfigMapping(prefix = "quarkus.renarde")
@ConfigRoot(phase = ConfigPhase.BUILD_AND_RUN_TIME_FIXED)
public interface RenardeConfig {

    /**
     * Renarde Auth config
     */
    public RenardeAuthConfig auth();

    public interface RenardeAuthConfig {

        /**
         * Option to control the name of the cookie used to redirect the user back
         * to where he wants to get access to.
         */
        @WithDefault("quarkus-redirect-location")
        public String locationCookie();

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy