Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
I
O
R
U
A
Author
- Interface in
org.apache.aries.samples.blog.api.persistence
B
Blog
- Interface in
org.apache.aries.samples.blog.api
BlogAuthor
- Interface in
org.apache.aries.samples.blog.api
BlogAuthorManager
- Interface in
org.apache.aries.samples.blog.api
BlogComment
- Interface in
org.apache.aries.samples.blog.api
BlogCommentManager
- Interface in
org.apache.aries.samples.blog.api
BlogCommentService
- Interface in
org.apache.aries.samples.blog.api.comment.persistence
BlogEntry
- Interface in
org.apache.aries.samples.blog.api
BlogEntryManager
- Interface in
org.apache.aries.samples.blog.api
BloggingService
- Interface in
org.apache.aries.samples.blog.api
BlogPersistenceService
- Interface in
org.apache.aries.samples.blog.api.persistence
This is the interface for the persistence layer of the blog application.
C
Comment
- Interface in
org.apache.aries.samples.blog.api.comment.persistence
createAuthor(String, String, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthorManager
Create an author.
createAuthor(String, Date, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Create an author in the database
createBlogAuthor(String, String, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Create a new author.
createBlogComment(String, String, long)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Create a comment
createBlogEntry(String, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
createBlogPost(String, String, String, List<String>)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Create a blog posting.
createBlogPost(String, String, String, List<String>)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Create an Blog post in the database
createComment(String, String, long)
- Method in interface org.apache.aries.samples.blog.api.
BlogCommentManager
Create a comment by an author (email) against a post (Id)
createComment(String, String, long)
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
BlogCommentService
Create a comment against a blog entry.
D
delete(int)
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
BlogCommentService
Delete a blog entry comment
deleteComment(int)
- Method in interface org.apache.aries.samples.blog.api.
BlogCommentManager
Delete a specific comment using it's id
E
Entry
- Interface in
org.apache.aries.samples.blog.api.persistence
F
findBlogEntryByTitle(String)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Find a specific blog entry by title.
findBlogEntryByTitle(String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get a BlogEntry that has a given title
G
getAllAuthors()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthorManager
Get all authors from the database.
getAllAuthors()
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get all authors in the database
getAllBlogEntries()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Retrieve all blog entries.
getAllBlogEntries()
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get all the blog entries
getAllBlogEntries()
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get all the blog entries in the data store
getAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthorManager
Get an individual author.
getAuthor()
- Method in interface org.apache.aries.samples.blog.api.
BlogComment
Get the author of the comment
getAuthor()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the author of the blog entry.
getAuthor()
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
Comment
Get the author of the comment
getAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get the details for an author
getAuthor()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
Get the author of this blog post
getAuthorEmail()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the email address of the author of the blog posting.
getBio()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
Get the author's biography
getBio()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's biographical information
getBlogAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the author associated with a given email address.
getBlogEntries(int, int)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Get N posts from the database starting at post number X
getBlogEntries(int, int)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the a number of entries starting at the teh first index
getBlogEntries(int, int)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get the first N most recent posts starting from post X
getBlogEntriesModifiedBetween(String, String)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Retrieve all blog entries created between a specified date range.
getBlogEntriesModifiedBetween(Date, Date)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get BlogEntries created or modified between two specified dates
getBlogEntry(long)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the blog post with the specified id.
getBlogEntryById(long)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Obtain a given Blog post using its unique id.
getBlogPost(long)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Get the specified blog posting.
getBlogsForAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Retrieve all blog entries for a specific author.
getBlogsForAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get all the blog entries made by a particular author
getBlogText()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
Get the text for this blog post
getBlogTitle()
- Method in interface org.apache.aries.samples.blog.api.
Blog
Gets the title of the blog
getBlogTitle()
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the blog
getBody()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the body of the blog posting.
getComment()
- Method in interface org.apache.aries.samples.blog.api.
BlogComment
Get comment
getComment()
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
Comment
Get comment
getCommentCreationDate()
- Method in interface org.apache.aries.samples.blog.api.
BlogComment
Get the creation date for the comment
getCommentsByAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.
BlogCommentManager
Get all the comments made by an author
getCommentsForAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
BlogCommentService
Get comments for a given author.
getCommentsForEntry(BlogEntry)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the comments associated with an entry
getCommentsForEntry(long)
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
BlogCommentService
Get comments for a given blog entry post.
getCommentsForPost(long)
- Method in interface org.apache.aries.samples.blog.api.
BlogCommentManager
getCreationDate()
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
Comment
Get the creation date for the comment
getDateOfBirth()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
Get the author's date of birth
getDisplayName()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's displayed name
getDob()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's date of birth
getEmail()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's email address
getEmailAddress()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
Get the author's email address
getEntries()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
getEntries()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's blog posts
getEntry()
- Method in interface org.apache.aries.samples.blog.api.
BlogComment
Get the parent blog post for the comment
getEntry()
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
Comment
Get the parent blog post for the comment
getFullName()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
Get the author's full name
getId()
- Method in interface org.apache.aries.samples.blog.api.
BlogComment
Get the Id value of the comment
getId()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the Id value for the blog posting.
getId()
- Method in interface org.apache.aries.samples.blog.api.comment.persistence.
Comment
Get the Id value of the comment
getId()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
get the Blog post id
getName()
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthor
Get the author's display name
getName()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Author
Get the author's full name
getNoOfBlogEntries()
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Get the number of blog entries in the data store
getNoOfEntries()
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Get the number of entries(posts) in the blog
getNoOfPosts()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Get the total number of blog entries in the database
getPublishDate()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the publish date of a blog posting.
getPublishDate()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
Get the publish date of this blog post
getTags()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
Get the tags for this blog post
getTitle()
- Method in interface org.apache.aries.samples.blog.api.
BlogEntry
Get the title of the blog posting.
getTitle()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
Get the title of this blog post
getUpdatedDate()
- Method in interface org.apache.aries.samples.blog.api.persistence.
Entry
I
isCommentingAvailable()
- Method in interface org.apache.aries.samples.blog.api.
BlogCommentManager
Check to see whether the comment service is available
isCommentingAvailable()
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Retrieve the state of the blog commenting service
O
org.apache.aries.samples.blog.api
- package org.apache.aries.samples.blog.api
org.apache.aries.samples.blog.api.comment.persistence
- package org.apache.aries.samples.blog.api.comment.persistence
org.apache.aries.samples.blog.api.persistence
- package org.apache.aries.samples.blog.api.persistence
R
removeAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthorManager
Delete an author from the database.
removeAuthor(String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Remove the author with the specified email address
removeBlogEntry(BlogAuthor, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Remove a specific blog entry.
removeBlogEntry(long)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Remove the specified BlogEntry, note that this must be a BlogEntry returned by this service.
U
updateAuthor(String, String, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BlogAuthorManager
Update a specific author.
updateAuthor(String, Date, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Update an author in the database
updateBlogAuthor(String, String, String, String, String)
- Method in interface org.apache.aries.samples.blog.api.
BloggingService
Update the attributes of an author.
updateBlogEntry(BlogEntry, BlogAuthor, String, String, String, List<String>)
- Method in interface org.apache.aries.samples.blog.api.
BlogEntryManager
Update a blog entry.
updateBlogEntry(long, String, String, String, List<String>, Date)
- Method in interface org.apache.aries.samples.blog.api.persistence.
BlogPersistenceService
Update an post in the database
A
B
C
D
E
F
G
I
O
R
U
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
Copyright © 2009-2011
The Apache Software Foundation
. All Rights Reserved.