public String delete(long id) {
   ownerDao.delete(id);
   this.ownerList = ownerDao.getAll();
   return "owners.jsf";
 }