public interface BlogReceiver extends OsidReceiver
The blog receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Blog
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBlogs(Id notificationId,
IdList blogIds)
The callback for notification of updated blogs.
|
void |
changedChildOfBlogs(Id notificationId,
IdList blogIds)
The callback for notifications of changes to children of blog
hierarchy nodes.
|
void |
deletedBlogs(Id notificationId,
IdList blogIds)
The callback for notification of deleted blogs.
|
void |
newBlogs(Id notificationId,
IdList blogIds)
The callback for notifications of new blogs.
|
down, upvoid newBlogs(Id notificationId, IdList blogIds)
notificationId - the notification Id blogIds - the Id of the new Blogs mandatory - This method must be implemented. void changedBlogs(Id notificationId, IdList blogIds)
notificationId - the notification Id blogIds - the Id of the updated Blogs
mandatory - This method must be implemented. void deletedBlogs(Id notificationId, IdList blogIds)
notificationId - the notification Id blogIds - the Id of the deleted Blogs
mandatory - This method must be implemented. void changedChildOfBlogs(Id notificationId, IdList blogIds)
notificationId - the notification Id blogIds - the Ids of the Blogs
whose children have changedmandatory - This method must be implemented.