public interface PublisherReceiver extends OsidReceiver
The publisher receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Publisher
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfPublishers(Id notificationId,
IdList publisherIds)
The callback for notifications of changes to children of publisher
hierarchy nodes.
|
void |
changedPublishers(Id notificationId,
IdList publisherIds)
The callback for notification of updated publishers.
|
void |
deletedPublishers(Id notificationId,
IdList publisherIds)
the callback for notification of deleted publishers.
|
void |
newPublishers(Id notificationId,
IdList publisherIds)
The callback for notifications of new publishers.
|
down, upvoid newPublishers(Id notificationId, IdList publisherIds)
notificationId - the notification Id publisherIds - the Ids of the new
Publishers mandatory - This method must be implemented. void changedPublishers(Id notificationId, IdList publisherIds)
notificationId - the notification Id publisherIds - the Ids of the updated
Publishers mandatory - This method must be implemented. void deletedPublishers(Id notificationId, IdList publisherIds)
notificationId - the notification Id publisherIds - the Ids of the registered
Publishers mandatory - This method must be implemented. void changedChildOfPublishers(Id notificationId, IdList publisherIds)
notificationId - the notification Id publisherIds - the Ids of the Publishers
whose children have changedmandatory - This method must be implemented.