DiscoveryURLs discURLs = business.getDiscoveryURLs();
if ((discURLs != null) && (discURLs.getDiscoveryURLVector() != null))
DiscoveryURLTable.insert(businessKey,discURLs.getDiscoveryURLVector(),connection);
// insert the BusinessEntity's Contact objects & information
Contacts contacts = business.getContacts();
if (contacts != null)
{
Vector contactVector = contacts.getContactVector();
if ((contactVector != null) && (contactVector.size() > 0))
{
// insert the BusinessEntity's Contact objects
ContactTable.insert(businessKey,contacts.getContactVector(),connection);
// insert the BusinessEntity's Contact Phone, Address and Email Info
int listSize = contactVector.size();
for (int contactID=0; contactID<listSize; contactID++)
{