Package org.apache.aries.samples.blog.api.persistence

Examples of org.apache.aries.samples.blog.api.persistence.Entry


  public Entry findBlogEntryByTitle(String title) {
    Query q = em
        .createQuery("SELECT e FROM BLOGENTRY e WHERE e.title = ?1");
    q.setParameter(1, title);
    Entry b = (Entry) q.getSingleResult();
    return b;
  }
View Full Code Here


  public Entry findBlogEntryByTitle(String title) {
    Query q = em
        .createQuery("SELECT e FROM BLOGENTRY e WHERE e.title = ?1");
    q.setParameter(1, title);
    Entry b = (Entry) q.getSingleResult();
    return b;
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.samples.blog.api.persistence.Entry

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.