//----------------------------------------
public void createObject(Uri uri,ObjectNode aObject)
throws ServiceAccessException, ObjectAlreadyExistsException {
try {
if (object.getUri().equals(uri.toString())) {
throw new ObjectAlreadyExistsException(uri.toString());
}
storeObject(uri,aObject);
} catch(ObjectNotFoundException e) {
// Never happens
}