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

io.quarkus.runtime.console.ConsoleRuntimeConfig Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show 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