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.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(name = "console", phase = ConfigPhase.RUN_TIME)
public class 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
     */
    @ConfigItem
    public Optional color;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy