You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: delivery-sdk/src/main/java/kontent/ai/delivery/CacheManager.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,18 +50,18 @@
50
50
publicinterfaceCacheManager {
51
51
52
52
/**
53
-
* Retrieve an earlier cached response from the KontentDelivery API.
53
+
* Retrieve an earlier cached response from the Kontent.ai Delivery API.
54
54
*
55
55
* @param url The url that would be used to retrieve the response from Kontent.ai Delivery API.
56
56
* @return JsonNode response or null if no value is available in the cache for the given url.
57
57
*/
58
58
JsonNodeget(finalStringurl);
59
59
60
60
/**
61
-
* Cache a response from the KontentDelivery API.
61
+
* Cache a response from the Kontent.ai Delivery API.
62
62
*
63
63
* @param url the URL that was used to retrieve the response from the Kontent.ai Delivery API.
64
-
* @param jsonNode the JsonNode created from the response from the Kontent.ai Deliver API.
64
+
* @param jsonNode the JsonNode created from the response from the Kontent.ai Delivery API.
65
65
* @param containedContentItems (null allowed) can be used to inspect the original contents of the JsonNode and allow for precise cache invalidation (if implemented).
0 commit comments