Class DataStore

java.lang.Object
com.thoughtworks.gauge.datastore.DataStore

@Deprecated public class DataStore extends Object
Deprecated.
DataStore is no longer valid. The usage together with DataStoreFactory API will throw an Exception in multithreaded execution.

Use specific data stores instead.

See Also:
  • Constructor Details

    • DataStore

      public DataStore()
      Deprecated.
  • Method Details

    • put

      public void put(Object key, Object value)
      Deprecated.
      Parameters:
      key - - Key of the data entry
      value - - value of the Data entry
    • remove

      public Object remove(Object key)
      Deprecated.
      Parameters:
      key - - Key of the data entry to remove
      Returns:
      The value of the entry removed. Null if no entry.
    • get

      public Object get(Object key)
      Deprecated.
      Parameters:
      key - - Key of the data entry whose value is needed
      Returns:
      The value corresponding to the key. null if there is no value stored
    • entrySet

      public Set<Map.Entry<Object,Object>> entrySet()
      Deprecated.