IdentifierBag idBag = business.getIdentifierBag();
if ((idBag != null) && (idBag.getKeyedReferenceVector() != null))
BusinessIdentifierTable.insert(businessKey,idBag.getKeyedReferenceVector(),connection);
// insert the BusinessEntity's CategoryBag KeyedReferences
CategoryBag catBag = business.getCategoryBag();
if ((catBag != null) && (catBag.getKeyedReferenceVector() != null))
BusinessCategoryTable.insert(businessKey,catBag.getKeyedReferenceVector(),connection);
// insert the BusinessEntity's DiscoveryURLs
DiscoveryURLs discURLs = business.getDiscoveryURLs();
if ((discURLs != null) && (discURLs.getDiscoveryURLVector() != null))
DiscoveryURLTable.insert(businessKey,discURLs.getDiscoveryURLVector(),connection);