{
// iterate through the PublisherAssertion Vector
for (int i=0; i<assertions.size(); i++)
{
// grab a reference to the next PublisherAssertion
PublisherAssertion assertion = (PublisherAssertion)assertions.elementAt(i);
// if the PublisherID is equal to the PublisherID of the BusinessEntity
// specified by the 'fromKey' then set the FROM_CHECK column to 'false'
String fromID = BusinessEntityTable.selectPublisherID(assertion.getFromKey(),connection);
if (publisherID.equalsIgnoreCase(fromID))
PublisherAssertionTable.updateFromCheck(assertion,false,connection);
// if the PublisherID is equal to the PublisherID of the BusinessEntity
// specified by the 'toKey' then set the TO_CHECK column to 'false'
String toID = BusinessEntityTable.selectPublisherID(assertion.getToKey(),connection);
if (publisherID.equalsIgnoreCase(toID))
PublisherAssertionTable.updateToCheck(assertion,false,connection);
}
// remove any invalidated rows from the PUBLISHER_ASSERTION table. An