* @param name the connection factory name.
*/
private void cleanUpResources(String name) {
synchronized(pmf_listSyncObject) {
for (Iterator it = pmf_list.iterator(); it.hasNext(); ) {
PersistenceManagerFactory pmf = (PersistenceManagerFactory)it.next();
if (pmf.getConnectionFactoryName().equals(name)) {
it.remove();
}
}
}
}