|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FetcherException | |
org.blojsom.fetcher | Defines the classes and interfaces for blojsom fetchers |
org.blojsom.fetcher.database | Defines the classes and interfaces for the blojsom database fetcher |
Uses of FetcherException in org.blojsom.fetcher |
Methods in org.blojsom.fetcher that throw FetcherException | |
void |
Fetcher.init()
Initialize this fetcher. |
java.lang.String[] |
Fetcher.loadBlogIDs()
Load the blog IDs |
Blog |
Fetcher.loadBlog(java.lang.String blogId)
Load the Blog given the blog ID |
Blog |
Fetcher.loadBlog(java.lang.Integer id)
Load the Blog given the ID |
void |
Fetcher.saveBlog(Blog blog)
Save a Blog |
void |
Fetcher.deleteBlog(Blog blog)
Delete a blog |
Entry[] |
Fetcher.fetchEntries(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse,
Blog blog,
java.lang.String flavor,
java.util.Map context)
Fetch a set of Entry objects. |
Entry[] |
Fetcher.loadAllEntriesForCategory(Blog blog,
java.lang.Integer categoryId)
Load all the entries for a given category |
Entry[] |
Fetcher.loadEntriesForCategory(Blog blog,
java.lang.Integer categoryId,
java.lang.Integer limit)
Load all the entries for a given category |
Entry[] |
Fetcher.loadEntries(Blog blog,
int pageSize,
int page)
Load a set of entries using a given page size and page in which to retrieve the entries |
Entry[] |
Fetcher.loadEntries(int pageSize,
int page,
Category specificCategory,
Category[] defaultCategories)
Load a set of entries using a given page size and page in which to retrieve the entries |
Entry[] |
Fetcher.findEntries(Blog blog,
java.lang.String query)
Find entries which have the search query in their title or description |
Entry[] |
Fetcher.findEntriesByMetadataKeyValue(Blog blog,
java.lang.String metadataKey,
java.lang.String metadataValue,
boolean pre,
boolean post)
Find entries by a metadata key/value pair |
Entry[] |
Fetcher.findEntriesWithMetadataKey(Blog blog,
java.lang.String metadataKey)
Find entries with a given metadata key |
Entry[] |
Fetcher.findEntriesBetweenDates(Blog blog,
java.util.Date startDate,
java.util.Date endDate)
Find entries between a start and end date |
Entry[] |
Fetcher.loadPreviousEntries(Blog blog,
Entry entry,
int numPreviousEntries)
Loads the previous entries of a specified entry |
java.lang.Integer |
Fetcher.countEntries(Blog blog)
Count the number of entries for a blog |
java.lang.Integer |
Fetcher.countEntriesForCategory(Blog blog,
Category category)
Count the number of entries for a blog category |
Entry |
Fetcher.loadEntry(Blog blog,
java.lang.Integer entryId)
Load an Entry for a given entry ID |
Entry |
Fetcher.loadEntry(Blog blog,
java.lang.String postSlug)
Load an Entry given a post slug |
Category[] |
Fetcher.fetchCategories(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse,
Blog blog,
java.lang.String flavor,
java.util.Map context)
Fetch a set of Category objects |
Category[] |
Fetcher.loadAllCategories(Blog blog)
Load each Category for a given blog |
Category |
Fetcher.loadCategory(Blog blog,
java.lang.Integer categoryId)
Load the Category for a given category ID |
Category |
Fetcher.loadCategory(Blog blog,
java.lang.String name)
Load the Category for a given category name |
void |
Fetcher.saveEntry(Blog blog,
Entry entry)
Save a given Entry |
void |
Fetcher.loadEntry(Blog blog,
Entry entry)
Load a given Entry |
void |
Fetcher.deleteEntry(Blog blog,
Entry entry)
Delete a given Entry |
void |
Fetcher.saveCategory(Blog blog,
Category category)
Save a given Category |
void |
Fetcher.loadCategory(Blog blog,
Category category)
Load a given Category |
void |
Fetcher.deleteCategory(Blog blog,
Category category)
Delete a given Category |
void |
Fetcher.saveComment(Blog blog,
Comment comment)
Save a given Comment |
void |
Fetcher.loadComment(Blog blog,
Comment comment)
Load a given Comment |
void |
Fetcher.deleteComment(Blog blog,
Comment comment)
Delete a given Comment |
java.util.List |
Fetcher.loadRecentComments(Blog blog)
Load the recent comments for a blog |
void |
Fetcher.saveTrackback(Blog blog,
Trackback trackback)
Save a given Trackback |
void |
Fetcher.loadTrackback(Blog blog,
Trackback trackback)
Load a given Trackback |
void |
Fetcher.deleteTrackback(Blog blog,
Trackback trackback)
Delete a given Trackback |
java.util.List |
Fetcher.loadRecentTrackbacks(Blog blog)
Load the recent trackbacks for a blog |
void |
Fetcher.savePingback(Blog blog,
Pingback pingback)
Save a given Pingback |
void |
Fetcher.loadPingback(Blog blog,
Pingback pingback)
Load a given Pingback |
Pingback |
Fetcher.loadPingback(Blog blog,
java.lang.String sourceURI,
java.lang.String targetURI)
Load a pingback given the source URI and target URI |
void |
Fetcher.deletePingback(Blog blog,
Pingback pingback)
Delete a given Pingback |
java.util.List |
Fetcher.loadRecentPingbacks(Blog blog)
Load the recent pingbacks for a blog |
User |
Fetcher.loadUser(Blog blog,
java.lang.String userLogin)
Load a User from a blog |
User |
Fetcher.loadUser(Blog blog,
java.lang.Integer userID)
Load a given User from a blog given their ID |
User |
Fetcher.saveUser(Blog blog,
User user)
Save a given User to the blog |
void |
Fetcher.deleteUser(Blog blog,
java.lang.Integer userID)
Delete a given user from a blog |
java.util.List |
Fetcher.findResponsesByStatus(Blog blog,
java.lang.String[] status)
Find the responses (comments, trackbacks, pingbacks) for a given Blog matching one of a set of status codes |
java.util.List |
Fetcher.findResponsesByQuery(Blog blog,
java.lang.String query)
Find the responses (comments, trackbacks, pingbacks) for a given Blog matching some query |
void |
Fetcher.destroy()
Called when BlojsomServlet is taken out of service |
Uses of FetcherException in org.blojsom.fetcher.database |
Methods in org.blojsom.fetcher.database that throw FetcherException | |
void |
DatabaseFetcher.init()
Initialize this fetcher. |
Blog |
DatabaseFetcher.loadBlog(java.lang.String blogId)
Load the Blog given the blog ID |
Blog |
DatabaseFetcher.loadBlog(java.lang.Integer id)
Load the Blog given the ID |
void |
DatabaseFetcher.saveBlog(Blog blog)
Save a Blog |
void |
DatabaseFetcher.deleteBlog(Blog blog)
Delete a blog |
java.lang.String[] |
DatabaseFetcher.loadBlogIDs()
Load the blog IDs |
Entry[] |
DatabaseFetcher.fetchEntries(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse,
Blog blog,
java.lang.String flavor,
java.util.Map context)
Fetch a set of Entry objects. |
Entry[] |
DatabaseFetcher.loadAllEntriesForCategory(Blog blog,
java.lang.Integer categoryId)
Load all the entries for a given category |
Entry[] |
DatabaseFetcher.loadEntriesForCategory(Blog blog,
java.lang.Integer categoryId,
java.lang.Integer limit)
Load all the entries for a given category |
Entry[] |
DatabaseFetcher.loadEntries(Blog blog,
int pageSize,
int page)
Load a set of entries using a given page size and page in which to retrieve the entries |
Entry[] |
DatabaseFetcher.loadEntries(int pageSize,
int page,
Category specificCategory,
Category[] defaultCategories)
Load a set of entries using a given page size and page in which to retrieve the entries |
Entry[] |
DatabaseFetcher.findEntries(Blog blog,
java.lang.String query)
Find entries which have the search query in their title or description |
Entry[] |
DatabaseFetcher.findEntriesByMetadataKeyValue(Blog blog,
java.lang.String metadataKey,
java.lang.String metadataValue,
boolean pre,
boolean post)
Find entries by a metadata key/value pair |
Entry[] |
DatabaseFetcher.findEntriesWithMetadataKey(Blog blog,
java.lang.String metadataKey)
Find entries with a given metadata key |
Entry[] |
DatabaseFetcher.findEntriesBetweenDates(Blog blog,
java.util.Date startDate,
java.util.Date endDate)
Find entries between a start and end date |
Entry[] |
DatabaseFetcher.loadPreviousEntries(Blog blog,
Entry entry,
int numPreviousEntries)
Loads the previous entries of a specified entry |
java.lang.Integer |
DatabaseFetcher.countEntries(Blog blog)
Count the number of entries for a blog |
java.lang.Integer |
DatabaseFetcher.countEntriesForCategory(Blog blog,
Category category)
Count the number of entries for a blog category |
Entry |
DatabaseFetcher.loadEntry(Blog blog,
java.lang.Integer entryId)
Load an Entry for a given entry ID |
Entry |
DatabaseFetcher.loadEntry(Blog blog,
java.lang.String postSlug)
Load an Entry given a post slug |
Category[] |
DatabaseFetcher.fetchCategories(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse,
Blog blog,
java.lang.String flavor,
java.util.Map context)
Fetch a set of Category objects |
Category[] |
DatabaseFetcher.loadAllCategories(Blog blog)
Load each Category for a given blog |
Category |
DatabaseFetcher.loadCategory(Blog blog,
java.lang.Integer categoryId)
Load the Category for a given category ID |
Category |
DatabaseFetcher.loadCategory(Blog blog,
java.lang.String name)
Load the Category for a given category name |
void |
DatabaseFetcher.saveEntry(Blog blog,
Entry entry)
Save a given Entry |
void |
DatabaseFetcher.loadEntry(Blog blog,
Entry entry)
Load a given Entry |
void |
DatabaseFetcher.deleteEntry(Blog blog,
Entry entry)
Delete a given Entry |
void |
DatabaseFetcher.saveCategory(Blog blog,
Category category)
Save a given Category |
void |
DatabaseFetcher.loadCategory(Blog blog,
Category category)
Load a given Category |
void |
DatabaseFetcher.deleteCategory(Blog blog,
Category category)
Delete a given Category |
void |
DatabaseFetcher.saveComment(Blog blog,
Comment comment)
Save a given Comment |
void |
DatabaseFetcher.loadComment(Blog blog,
Comment comment)
Load a given Comment |
void |
DatabaseFetcher.deleteComment(Blog blog,
Comment comment)
Delete a given Comment |
java.util.List |
DatabaseFetcher.loadRecentComments(Blog blog)
Load the recent comments for a blog |
void |
DatabaseFetcher.saveTrackback(Blog blog,
Trackback trackback)
Save a given Trackback |
void |
DatabaseFetcher.loadTrackback(Blog blog,
Trackback trackback)
Load a given Trackback |
void |
DatabaseFetcher.deleteTrackback(Blog blog,
Trackback trackback)
Delete a given Trackback |
java.util.List |
DatabaseFetcher.loadRecentTrackbacks(Blog blog)
Load the recent trackbacks for a blog |
void |
DatabaseFetcher.savePingback(Blog blog,
Pingback pingback)
Save a given Pingback |
void |
DatabaseFetcher.loadPingback(Blog blog,
Pingback pingback)
Load a given Pingback |
Pingback |
DatabaseFetcher.loadPingback(Blog blog,
java.lang.String sourceURI,
java.lang.String targetURI)
Load a pingback given the source URI and target URI |
void |
DatabaseFetcher.deletePingback(Blog blog,
Pingback pingback)
Delete a given Pingback |
java.util.List |
DatabaseFetcher.loadRecentPingbacks(Blog blog)
Load the recent pingbacks for a blog |
User |
DatabaseFetcher.loadUser(Blog blog,
java.lang.String userLogin)
Load a User from a blog |
User |
DatabaseFetcher.loadUser(Blog blog,
java.lang.Integer userID)
Load a given User from a blog given their ID |
User |
DatabaseFetcher.saveUser(Blog blog,
User user)
Save a given User to the blog |
void |
DatabaseFetcher.deleteUser(Blog blog,
java.lang.Integer userID)
Delete a given user from a blog |
java.util.List |
DatabaseFetcher.findResponsesByStatus(Blog blog,
java.lang.String[] status)
Load the responses (comments, trackbacks, pingbacks) for a given Blog matching one of a set of status codes |
java.util.List |
DatabaseFetcher.findResponsesByQuery(Blog blog,
java.lang.String query)
Find the responses (comments, trackbacks, pingbacks) for a given Blog matching some query |
void |
DatabaseFetcher.destroy()
Called when BlojsomServlet is taken out of service |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |