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

io.quarkus.swaggerui.runtime.SwaggerUiRuntimeConfig Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.swaggerui.runtime;

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

@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public class SwaggerUiRuntimeConfig {

    /**
     * If Swagger UI is included, it should be enabled/disabled. By default, Swagger UI is enabled if it is included (see
     * {@code always-include}).
     */
    @ConfigItem(defaultValue = "true")
    boolean enable;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy