public interface WalletStore
Wallet.| Modifier and Type | Method and Description |
|---|---|
InputStream |
get(String label)
Get data from the store.
|
Set<String> |
list()
List the labels for all stored data.
|
void |
put(String label,
InputStream data)
Put data into the store.
|
void |
remove(String label)
Remove data from the store.
|
void remove(String label) throws IOException
label - Name used to key the data.IOException - if an error occurs accessing underlying persistent storage.InputStream get(String label) throws IOException
label - Name used to key the data.IOException - if an error occurs accessing underlying persistent storage.Set<String> list() throws IOException
IOException - if an error occurs accessing underlying persistent storage.void put(String label, InputStream data) throws IOException
label - Name used to key the data.data - Data to be stored.IOException - if an error occurs accessing underlying persistent storage.Copyright © 2023. All rights reserved.