Uses of Interface
io.helidon.config.spi.ConfigFilter
-
Packages that use ConfigFilter Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.encryption Support for encrypted properties. -
-
Uses of ConfigFilter in io.helidon.config
Classes in io.helidon.config that implement ConfigFilter Modifier and Type Class Description class
OverrideConfigFilter
A config filter that replaces values with a new ones of keys that matching withPattern
.class
ValueResolvingFilter
A config filter that replaces all placeholders in a config value String with their corresponding values looked up from the config.Methods in io.helidon.config that return types with arguments of type ConfigFilter Modifier and Type Method Description Function<Config,ConfigFilter>
ConfigFilters.ValueResolvingBuilder. build()
Creates a function of values reference resolving.Function<Config,ConfigFilter>
ConfigFilters.ValueResolvingBuilder. get()
Methods in io.helidon.config with parameters of type ConfigFilter Modifier and Type Method Description Config.Builder
Config.Builder. addFilter(ConfigFilter configFilter)
Registers aConfigFilter
instance that will be used byConfig
to filter elementary value before it is returned to a user.Method parameters in io.helidon.config with type arguments of type ConfigFilter Modifier and Type Method Description Config.Builder
Config.Builder. addFilter(Function<Config,ConfigFilter> configFilterProvider)
Config.Builder
Config.Builder. addFilter(Supplier<Function<Config,ConfigFilter>> configFilterSupplier)
-
Uses of ConfigFilter in io.helidon.config.encryption
Classes in io.helidon.config.encryption that implement ConfigFilter Modifier and Type Class Description class
EncryptionFilter
Provides possibility to decrypt passwords from configuration sources.class
EncryptionFilterService
A Java service forEncryptionFilter
.Methods in io.helidon.config.encryption that return types with arguments of type ConfigFilter Modifier and Type Method Description Function<Config,ConfigFilter>
EncryptionFilter.Builder. buildProvider()
Create a newEncryptionFilter
provider based on this builder.static Function<Config,ConfigFilter>
EncryptionFilter. fromConfig()
Create a filter based on configuration (it takes its configuration from the configuration object it filters).
-