String myKey = "myKey";
String myValue;
int myRefreshPeriod = 1000;
try {
myValue = (String) admin.getFromCache(myKey, myRefreshPeriod);
} catch (NeedsRefreshException nre) {
try {
myValue = "This is the content retrieved.";
admin.putInCache(myKey, myValue);
} catch (Exception ex) {
myValue = (String) nre.getCacheContent();
admin.cancelUpdate(myKey);
}
}