* @see org.exoplatform.services.jcr.storage.WorkspaceStorageConnection#update(org.exoplatform.services.jcr.datamodel.PropertyData)
*/
public void update(PropertyData data) throws RepositoryException, UnsupportedOperationException,
InvalidItemStateException, IllegalStateException
{
Statistics s = ALL_STATISTICS.get(UPDATE_PROPERTY_DATA_DESCR);
try
{
s.begin();
wcs.update(data);
}
finally
{
s.end();
}
}