Package liquibase.configuration
Class ProvidedValue
java.lang.Object
liquibase.configuration.ProvidedValue
Describes a value found from a provider. This is the most basic level at which a configuration value is defined.
-
Constructor Summary
ConstructorDescriptionProvidedValue
(String requestedKey, String actualKey, Object value, String sourceDescription, ConfigurationValueProvider provider) -
Method Summary
-
Constructor Details
-
ProvidedValue
public ProvidedValue(String requestedKey, String actualKey, Object value, String sourceDescription, ConfigurationValueProvider provider)
-
-
Method Details
-
getValue
The value found by the provider. -
getRequestedKey
The configuration key the code asked the provider for. May be different thangetActualKey()
if the provider does fuzzy matching such as case-insensitive lookups or . -> _ conversions etc. -
getActualKey
The actual key/source for the value. This may be different thangetRequestedKey()
if the provider does fuzzy matching such as case-insensitive lookups or . -> _ conversions etc. -
getSourceDescription
A description of where the value came from. -
getProvider
The provider for this value -
describe
-