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