io.quarkus.runtime.console.ConsoleRuntimeConfig Maven / Gradle / Ivy
The newest version!
package io.quarkus.runtime.console;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
/**
* Console
*/
@ConfigMapping(prefix = "quarkus.console")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface ConsoleRuntimeConfig {
/**
* If color should be enabled or disabled.
*
* If this is not present then an attempt will be made to guess if the terminal supports color
*/
Optional color();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy