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, org.forgerock.json.JsonValue state)
      Adds the state into the store against the key.
      org.forgerock.json.JsonValue remove​(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 state
        state - 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