public void destroy(Long id) throws NonexistentEntityException {
   EntityManager em = null;
   try {
     em = getEntityManager();
     em.getTransaction().begin();
     Attendant attendant;
     try {
       attendant = em.getReference(Attendant.class, id);
       attendant.getId();
     } catch (EntityNotFoundException enfe) {
       throw new NonexistentEntityException(
           "The attendant with id " + id + " no longer exists.", enfe);
     }
     em.remove(attendant);
     em.getTransaction().commit();
   } finally {
     if (em != null) {
       em.close();
     }
   }
 }
 public void edit(Attendant attendant) throws NonexistentEntityException, Exception {
   EntityManager em = null;
   try {
     em = getEntityManager();
     em.getTransaction().begin();
     attendant = em.merge(attendant);
     em.getTransaction().commit();
   } catch (Exception ex) {
     String msg = ex.getLocalizedMessage();
     if (msg == null || msg.length() == 0) {
       Long id = attendant.getId();
       if (findAttendant(id) == null) {
         throw new NonexistentEntityException(
             "The attendant with id " + id + " no longer exists.");
       }
     }
     throw ex;
   } finally {
     if (em != null) {
       em.close();
     }
   }
 }