* @exception ObjectNotFoundException The object to update was not found
*/
public void storeObject(Uri uri, ObjectNode object)
throws ServiceAccessException, ObjectNotFoundException {
ObjectNode tempObject = object.cloneObject();
tempObject.validate(uri.toString());
enlist(nodeStore);
try {
nodeStore.storeObject(uri, tempObject);
} catch (ServiceAccessException e) {
delist(nodeStore, false);