public interface CustomObjectService
Modifier and Type | Method and Description |
---|---|
DeleteRequest<CustomObject> |
delete(java.lang.String container,
java.lang.String key)
Deletes the object identified by container and key.
|
FetchRequest<CustomObject> |
get(java.lang.String container,
java.lang.String key)
Finds a custom object by container and key.
|
<T> play.libs.F.Promise<SphereResult<CustomObject>> |
set(java.lang.String container,
java.lang.String key,
T value)
Sets the the custom object identified by container and key
Will overwrite all data that already exists under that key.
|
FetchRequest<CustomObject> get(java.lang.String container, java.lang.String key)
<T> play.libs.F.Promise<SphereResult<CustomObject>> set(java.lang.String container, java.lang.String key, T value)
DeleteRequest<CustomObject> delete(java.lang.String container, java.lang.String key)