-
public abstract class ConfigValueSupplier<ValueType extends Object>A ConfigValueSupplier is a class which is responsible for retrieving the value of a configuration property.
-
-
Constructor Summary
Constructors Constructor Description ConfigValueSupplier()
-
Method Summary
Modifier and Type Method Description final ValueTypeget()abstract ConfigValueSupplier<ValueType>withDeprecation(Deprecation deprecation)Apply a Deprecation to this ConfigValueSupplier. -
-
Method Detail
-
withDeprecation
abstract ConfigValueSupplier<ValueType> withDeprecation(Deprecation deprecation)
Apply a Deprecation to this ConfigValueSupplier. Deprecation is only applied to types where it makes sense (those which retrieve a value from an 'external' location--right now only ConfigSourceSupplier), however, types which wrap an inner supplier must pass the deprecation 'down' so it can be applied correctly by any supplier which should observe it.
-
-
-
-