* Developer informing eBean that tables where modified outside of eBean.
* Invalidate the cache etc as required.
*/
public void externalModification(String tableName, boolean inserts, boolean updates, boolean deletes) {
TransactionEventTable evt = new TransactionEventTable();
evt.add(tableName, inserts, updates, deletes);
externalModification(evt);
}