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

io.quarkus.runtime.annotations.ConfigDocPrefix Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime.annotations;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * This annotation can be used when you want to override the top level prefix from the ConfigRoot/ConfigMapping for doc
 * generation.
 * 

* This is for instance useful for {@code ConfigConfig}, which is an odd beast. *

* Should be considered very last resort. */ @Documented @Retention(RUNTIME) @Target({ ElementType.TYPE }) public @interface ConfigDocPrefix { String value(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy