io.quarkus.runtime.BannerRuntimeConfig Maven / Gradle / Ivy
The newest version!
package io.quarkus.runtime;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
/**
* Banner
*/
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public class BannerRuntimeConfig {
/**
* Whether the banner will be displayed
*/
@ConfigItem(defaultValue = "true")
public boolean enabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy