Uses of Interface
io.helidon.config.spi.OverrideSource
-
Packages that use OverrideSource Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of OverrideSource in io.helidon.config
Classes in io.helidon.config that implement OverrideSource Modifier and Type Class Description class
ClasspathOverrideSource
OverrideSource
implementation that loads override definitions from a resource on a classpath.class
FileOverrideSource
OverrideSource
implementation that loads override definitions from a file on a filesystem.class
InMemoryOverrideSource
In-memory implementation of override source.class
UrlOverrideSource
OverrideSource
implementation that loads configuration override content from specified endpoint URL.Methods in io.helidon.config that return OverrideSource Modifier and Type Method Description static OverrideSource
OverrideSources. create(Map<String,String> overrideValues)
Creates a new instance odOverrideSource
from a map of wildcards to values.static OverrideSource
OverrideSources. empty()
An empty implementation ofOverrideSource
.Method parameters in io.helidon.config with type arguments of type OverrideSource Modifier and Type Method Description Config.Builder
Config.Builder. overrides(Supplier<? extends OverrideSource> overridingSource)
Sets source of a override source. -
Uses of OverrideSource in io.helidon.config.spi
Methods in io.helidon.config.spi that return OverrideSource Modifier and Type Method Description default OverrideSource
OverrideSource. get()
-