final RepositoryItemUid uid = item.getRepositoryItemUid();
final AttributeStorage attributeStorage = repository
.getAttributesHandler().getAttributeStorage();
final Attributes attributes = attributeStorage
.getAttributes(uid);
attributes.put(ATTR_IS_SAVED, "true");
attributes.put(ATTR_SAVE_TIME, "" + System.currentTimeMillis());
attributeStorage.putAttributes(uid, attributes);
} catch (final Exception e) {