// TODO - remove this after upgrading ContentServices beyond 2.0.6-GA
@Override
public void onApplicationEvent(ContentCacheInvalidationEvent event) {
super.onApplicationEvent(event);
if (getCacheStateManager() != null && shouldInvalidateCache(event)) {
getCacheStateManager().invalidate(
DefaultContentItemHydrationService.BY_CONTENT_ITEM_ID_AND_PREVIEW_TOKEN);
}
}