Package liquibase.configuration
Interface ConfigurationValueObfuscator<DataType>
public interface ConfigurationValueObfuscator<DataType>
Used by 
ConfigurationDefinition.getCurrentValueObfuscated() to obfuscate the current value.- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ConfigurationValueObfuscator<String>Not really an obfuscator -- simply returns the passed value directly.static final ConfigurationValueObfuscator<String>Standard obfuscator.static final ConfigurationValueObfuscator<String>Obfuscates credentials from the URL
- 
Method Summary
- 
Field Details- 
STANDARDStandard obfuscator. Returns the constant "*****".
- 
URL_OBFUSCATORObfuscates credentials from the URL
- 
NONENot really an obfuscator -- simply returns the passed value directly. Used for times the code wants to explicitly say "I have no obfuscator"
 
- 
- 
Method Details- 
obfuscateReturn an "obfuscated" version of the given value, suitable for logging or storing in non-secure environments.
 
-