public interface ProgramReceiver extends OsidReceiver
The program receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Programs.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPrograms(Id notificationId,
IdList programIds)
The callback for notification of updated programs.
|
void |
deletedPrograms(Id notificationId,
IdList programIds)
the callback for notification of deleted programs.
|
void |
newPrograms(Id notificationId,
IdList programIds)
The callback for notifications of new programs.
|
down, upvoid newPrograms(Id notificationId, IdList programIds)
notificationId - the notification Id programIds - the Ids of the new Programs
mandatory - This method must be implemented. void changedPrograms(Id notificationId, IdList programIds)
notificationId - the notification Id programIds - the Ids of the updated
Programs mandatory - This method must be implemented.