oldIndividualEntityBean.setIndividualVO(oldIndividualVO);
} catch (FinderException fe) {
logger.info("[changePrimaryContact] old primary contact: "+oldIndividualVO.getContactID()+", not found.");
}
// set the the new one to be the primary contact
IndividualLocal newIndividualEntityBean = ih.findByPrimaryKey(new IndividualPK(newIndividualVO.getContactID(), this.dataSource));
newIndividualVO.setIsPrimaryContact("YES");
newIndividualEntityBean.setIndividualVO(newIndividualVO);
} else {
// The selected primary contact is the same as the previous primary contact, just
// need to set it as primary.