"Object with id ["
+ id
+ "] is not serializable. Expect problems with auxiliary caches.");
}
ElementAttributes attrib = (ElementAttributes) this.cacheManager
.getDefaultElementAttributes();
if (o instanceof RefreshableCachedObject)
{
attrib.setIsEternal(true);
}
else
{
attrib.setIsEternal(false);
attrib.setMaxLifeSeconds((o.getExpires() + 500) / 1000);
}
attrib.setLastAccessTimeNow();
attrib.setCreateTime();
this.cacheManager.putInGroup(id, group, o, attrib);
}
catch (CacheException e)
{