* Persists the given pc instances.
* @param pcInstances the pc instances to persist
*/
private void makePersistentAll(List pcInstances) {
Transaction tx = pm.currentTransaction();
tx.begin();
try {
pm.makePersistentAll(pcInstances);
if (debug) logger.debug("inserted " + pcInstances);
tx.commit();
} finally {