public interface IStore
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue(java.lang.String key)
Gets a stored value from the store.
|
void |
persist()
Persists this store's content.
|
void |
removeValue(java.lang.String key)
Removes a specific value from the store.
|
void |
setValue(java.lang.String key,
java.lang.String value)
Sets a value in the store.
|
java.lang.String getValue(java.lang.String key)
key - Unique key to identify the value. If null, the method returns null.void setValue(java.lang.String key,
java.lang.String value)
key - Unique key for the value. If null, the method call has no effect.value - Value to be stored. If null, the method call has no effect.void persist()
throws ClientException
ClientException - client exceptionvoid removeValue(java.lang.String key)
key - Unique key to identify the value. If null, the method call has no effect.