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
When the SDK is configured with a CacheManager, and you change a custom data value, and then later query that value, the old value is shown. For example:
StringaccountHref = account.getHref();
Stringvalue = account.getCustomData().get("foo");
System.out.println(value); //prints "bar"account.getCustomData().put("foo", "whatever");
account.save(); //persists change back to the server//lookup the account:account = client.getResource(href, Account.class);
value = account.getCustomData().get("foo");
System.out.println(value); // prints "bar", but SHOULD print "whatever"
When the SDK is configured with a CacheManager, and you change a custom data value, and then later query that value, the old value is shown. For example: