PersistentObject.commit(_contacts);
// Use the CollectionListeners to let the server know the remove was
// successful
for (int i = 0; i < _listeners.size(); i++) {
final CollectionListener cl =
(CollectionListener) _listeners.elementAt(i);
cl.elementAdded(this, object);
}
return true;
}