Interface ArtifactEncryptionSecretsStorage
public interface ArtifactEncryptionSecretsStorage
Interface definition for artifact encryption secrets store. It maintains secret key/value pairs
identified by id (e.g. software module id)
-
Method Summary
Modifier and TypeMethodDescriptionvoidAdds secret key/value pair associated with particular id (e.g. software module id) to the store.Retrieves secret value associated with particular id and key from the store.
-
Method Details
-
addSecret
Adds secret key/value pair associated with particular id (e.g. software module id) to the store.- Parameters:
id- id of the secretsecretKey- key of the secretsecretValue- value of the secret
-
getSecret
Retrieves secret value associated with particular id and key from the store.- Parameters:
id- id of the secretsecretKey- key of the secret
-