Package nm.aleksey.domain

Examples of nm.aleksey.domain.Author


  }

  public void delete(Author author) {
    EntityManager em = entityManager();
    try {
      Author attached = em.find(Author.class, author.getId());
      em.remove(attached);
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      em.close();
View Full Code Here


    if (id == null) {
      return null;
    }
    EntityManager em = entityManager();
    try {
      Author author = em.find(Author.class, id);
      return author;
    } catch (Exception e) {
      e.printStackTrace();
      return null;
    } finally {
View Full Code Here

      em.close();
    }
  }

  public Author find(Long id) {
    Author author = find(Author.class, id);
    return author;
  }
View Full Code Here

TOP

Related Classes of nm.aleksey.domain.Author

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.