Class NOOPCache

java.lang.Object
com.jayway.jsonpath.spi.cache.NOOPCache
All Implemented Interfaces:
Cache

public class NOOPCache extends Object implements Cache
  • Constructor Details

    • NOOPCache

      public NOOPCache()
  • Method Details

    • get

      public JsonPath get(String key)
      Description copied from interface: Cache
      Get the Cached JsonPath
      Specified by:
      get in interface Cache
      Parameters:
      key - cache key to lookup the JsonPath
      Returns:
      JsonPath
    • put

      public void put(String key, JsonPath value)
      Description copied from interface: Cache
      Add JsonPath to the cache
      Specified by:
      put in interface Cache
      Parameters:
      key - cache key to store the JsonPath
      value - JsonPath to be cached