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

io.quarkiverse.apistax.APIstaxConfiguration Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.apistax;

import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(name = "apistax", phase = ConfigPhase.RUN_TIME)
public class APIstaxConfiguration {

    /**
     * The APIstax API key. Get one via https://apistax.io
     *
     * @asciidoclet
     */
    @ConfigItem
    public String apiKey;

    /**
     * Enables the mock mode.
     * When enabled, requests are not send. Instead, fake data is returned.
     *
     * @asciidoclet
     */
    @ConfigItem(defaultValue = "false")
    public Boolean mock;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy