for (Object propertyId : cachedEntity.getItemPropertyIds())
{
Property<?> cachedProperty = cachedEntity.getItemProperty(propertyId);
if (cachedProperty instanceof EntityItem.EntityProperty)
{
@SuppressWarnings("rawtypes")
EntityProperty entityProperty = (EntityProperty) cachedProperty;
entityProperty.fireValueChange();
}
}
}
return (Serializable) entityId;