Interface EncryptablePropertyResolver
-
- All Known Implementing Classes:
DefaultLazyPropertyResolver,DefaultPropertyResolver
public interface EncryptablePropertyResolverAn interface to resolve property values that may be encrypted.- Version:
- $Id: $Id
- Author:
- Ulises Bocchio
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringresolvePropertyValue(String value)Returns the unencrypted version of the value provided free on any prefixes/suffixes or any other metadata surrounding the encrypted value.
-
-
-
Method Detail
-
resolvePropertyValue
String resolvePropertyValue(String value)
Returns the unencrypted version of the value provided free on any prefixes/suffixes or any other metadata surrounding the encrypted value. Or the actual same String if no encryption was detected.- Parameters:
value- the property value- Returns:
- either the same value if the value is not encrypted, or the decrypted version.
-
-