int addID = adr.getAddressID();
if (addID > 0) {
// The boolean value false tells the ContactHelperEJB to NOT
// update the 'entity.Modified' field, since we are already
// updating that record at this time.
remote.updateAddress(this.envo.getPrimaryAddress(), entId, modBy, false);
} else {
// don't update Modified field
remote.addAddress(this.envo.getPrimaryAddress(), entId, cntType, modBy, false);
}
}