CacheSupport.cachePutExp(this.getClass().getName(), id, this, CACHE_EXPIR);
addSummaryToCache();
}
public StreamItemSummaryDTO addSummaryToCache() {
StreamItemSummaryDTO summ = buildSummaryItem();
CacheSupport.cachePut(StreamItemSummaryDTO.class.getName(), summ.getId(), summ);
return summ;
}