if (uow != null) {
// Make sure our session is part of the UOW
// if it has not already been added to it
// (UOW will detect if it's a duplicate)
uow.add((ReplicableEntity) session);
uow.save();
} else {
throw new IllegalStateException("Missing unit-of-work");
}
}
}