Package org.nuxeo.runtime.kv
Interface KeyValueService
-
- All Known Implementing Classes:
KeyValueServiceImpl
public interface KeyValueServiceKey/Value Service.This service allows registration and access to
KeyValueStores to store simple values associated to keys.- Since:
- 9.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyValueStoregetKeyValueStore(String name)Gets the Key/Value store with the given name.
-
-
-
Method Detail
-
getKeyValueStore
KeyValueStore getKeyValueStore(String name)
Gets the Key/Value store with the given name.If the store is not found, the default store is returned.
- Parameters:
name- the store name- Returns:
- the store with the given name, or the default store
-
-