public void insertAddress(Address address) throws AddressException {
   daoValidator.addressValidator(address);
   logger.debug("Inserting address with id: %s.", address.getAddressId());
   contactsMapper.insertAddress(address);
 }