@Beta public interface SecureStoreManager
SecureStore
.Modifier and Type | Method and Description |
---|---|
void |
delete(String namespace,
String name)
Deletes the element with the given name.
|
void |
put(String namespace,
String name,
String data,
String description,
Map<String,String> properties)
Stores an element in the secure store.
|
void put(String namespace, String name, String data, @Nullable String description, Map<String,String> properties) throws Exception
namespace
- The namespace that this key belongs toname
- This is the identifier that will be used to retrieve this elementdata
- The sensitive data that has to be securely storeddescription
- User provided description of the entryproperties
- associated with this elementIOException
- If the attempt to store the element failedException
- If the specified namespace does not existvoid delete(String namespace, String name) throws Exception
namespace
- The namespace that this key belongs toname
- of the element to deleteIOException
- If the store is not initialized or if the key could not be removedException
- If the specified namespace or name does not existCopyright © 2024 Cask Data, Inc. Licensed under the Apache License, Version 2.0.