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)Optional<String>getEncryptedValue(String key)StringgetEncryptedValueOrNull(String key)Optional<String>getValue(String key)StringgetValueOrNull(String key)voidsetEncryptedValue(String key, String value)voidsetValue(String key, String value)
-
-
-
Method Detail
-
getEncryptedValue
Optional<String> getEncryptedValue(String key) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
getEncryptedValueOrNull
@Nullable String getEncryptedValueOrNull(String key) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
setEncryptedValue
void setEncryptedValue(String key, String value) throws RegistryCryptoException
- Throws:
RegistryCryptoException
-
deleteValue
void deleteValue(String key)
-
-