Package app.nzyme.plugin
Interface Registry
-
public interface Registry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteValue(String key)voiddeleteValue(String key, UUID organizationId, UUID tenantId)Optional<String>getEncryptedValue(String key)Optional<String>getEncryptedValue(String key, UUID organizationId, UUID tenantId)StringgetEncryptedValueOrNull(String key)StringgetEncryptedValueOrNull(String key, UUID organizationId, UUID tenantId)Optional<String>getValue(String key)Optional<String>getValue(String key, UUID organizationId, UUID tenantId)StringgetValueOrNull(String key)StringgetValueOrNull(String key, UUID organizationId, UUID tenantId)voidsetEncryptedValue(String key, String value)voidsetEncryptedValue(String key, String value, UUID organizationId, UUID tenantId)voidsetValue(String key, String value)voidsetValue(String key, String value, UUID organizationId, UUID tenantId)
-
-
-
Method Detail
-
getEncryptedValue
Optional<String> getEncryptedValue(String key) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
getEncryptedValue
Optional<String> getEncryptedValue(String key, UUID organizationId, UUID tenantId) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
getEncryptedValueOrNull
@Nullable String getEncryptedValueOrNull(String key) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
getEncryptedValueOrNull
@Nullable String getEncryptedValueOrNull(String key, UUID organizationId, UUID tenantId) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
setEncryptedValue
void setEncryptedValue(String key, String value) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
setEncryptedValue
void setEncryptedValue(String key, String value, UUID organizationId, UUID tenantId) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
deleteValue
void deleteValue(String key)
-
-