Package org.forgerock.selfservice.core
Interface ProcessStore
-
public interface ProcessStoreProcess store is used to persist state throughout a given flow cycle.- Since:
- 0.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(String key, org.forgerock.json.JsonValue state)Adds the state into the store against the key.org.forgerock.json.JsonValueremove(String key)Removes the state out of the store.
-
-
-
Method Detail
-
add
void add(String key, org.forgerock.json.JsonValue state)
Adds the state into the store against the key.- Parameters:
key- key used to index the statestate- the state
-
remove
org.forgerock.json.JsonValue remove(String key)
Removes the state out of the store.- Parameters:
key- key used to index the state- Returns:
- the state
-
-