io.quarkus.runtime.annotations.ConfigDocSection Maven / Gradle / Ivy
package io.quarkus.runtime.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.SOURCE;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* A marker indicating that the configuration item {@link ConfigItem} should be generated as a section.
* The section will be generated only if the configuration item type is annotated with {@link ConfigGroup}
*/
@Documented
@Retention(SOURCE)
@Target({ FIELD, PARAMETER, METHOD })
public @interface ConfigDocSection {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy