final StringEncryptor stringEncryptor = registry.getStringEncryptor(this);
if (stringEncryptor != null) {
return PropertyValueEncryptionUtils.decrypt(encodedValue, stringEncryptor);
}
final TextEncryptor textEncryptor = registry.getTextEncryptor(this);
if (textEncryptor != null) {
return PropertyValueEncryptionUtils.decrypt(encodedValue, textEncryptor);
}
/*