Package org.forgerock.selfservice.core
Interface ProcessStore
-
public interface ProcessStore
Process 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 void
add(String key, JsonValue state)
Adds the state into the store against the key.JsonValue
remove(String key)
Removes the state out of the store.
-