Uses of Class
org.apache.aries.samples.blog.persistence.jdbc.entity.EntryImpl

Packages that use EntryImpl
org.apache.aries.samples.blog.persistence.jdbc   
org.apache.aries.samples.blog.persistence.jdbc.entity   
 

Uses of EntryImpl in org.apache.aries.samples.blog.persistence.jdbc
 

Methods in org.apache.aries.samples.blog.persistence.jdbc that return EntryImpl
 EntryImpl BlogPersistenceServiceImpl.findBlogEntryByTitle(String title)
          Find the blog entry record with the specified title
 EntryImpl BlogPersistenceServiceImpl.getBlogEntryById(long postId)
          Return the blog entry record with the specified id
 

Methods in org.apache.aries.samples.blog.persistence.jdbc that return types with arguments of type EntryImpl
 List<EntryImpl> BlogPersistenceServiceImpl.getAllBlogEntries()
          Return all blog entry records from BlogEntry table with the most recent published blog entries first
 List<EntryImpl> BlogPersistenceServiceImpl.getBlogEntries(int firstPostIndex, int noOfPosts)
          Return the portion of blog Entries
 List<EntryImpl> BlogPersistenceServiceImpl.getBlogEntriesModifiedBetween(Date start, Date end)
          Return the blog entries modified between the date range of [start, end]
 List<EntryImpl> BlogPersistenceServiceImpl.getBlogsForAuthor(String emailAddress)
          Return a list of blog entries belonging to the author with the specified email address
 

Uses of EntryImpl in org.apache.aries.samples.blog.persistence.jdbc.entity
 

Methods in org.apache.aries.samples.blog.persistence.jdbc.entity that return types with arguments of type EntryImpl
 List<EntryImpl> AuthorImpl.getEntries()
          Get the author's blog posts
 

Method parameters in org.apache.aries.samples.blog.persistence.jdbc.entity with type arguments of type EntryImpl
 void AuthorImpl.setEntries(List<EntryImpl> posts)
          Set the author's blog posts
 



Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved.