Package io.smallrye.config
Interface SmallRyeConfigBuilderCustomizer
-
public interface SmallRyeConfigBuilderCustomizerThisSmallRyeConfigBuilderCustomizerallows to customize aSmallRyeConfigBuilder, used to create aSmallRyeConfiginstance.Instances of this interface will be discovered via the
ServiceLoadermechanism and can be registered by providing aMETA-INF/services/io.smallrye.config.SmallRyeConfigBuilderCustomizerwhich contains the fully qualified class name of the customSmallRyeConfigBuilderCustomizerimplementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidconfigBuilder(SmallRyeConfigBuilder builder)Customize the currentSmallRyeConfigBuilder.default intpriority()Returns the customizer priority.
-
-
-
Method Detail
-
configBuilder
void configBuilder(SmallRyeConfigBuilder builder)
Customize the currentSmallRyeConfigBuilder.- Parameters:
builder- the currentSmallRyeConfigBuilder.
-
priority
default int priority()
Returns the customizer priority. Customizers are sorted by ascending priority and executed in that order, meaning that higher numeric priorities will be executing last, possible overriding values set by previous customizers.- Returns:
- the priority value.
-
-