public interface PlanReceiver extends OsidReceiver
The plan receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted plans.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPlans(Id notificationId,
IdList planIds)
The callback for notifications of updated plans.
|
void |
deletedPlans(Id notificationId,
IdList planIds)
The callback for notification of deleted plans.
|
void |
newPlans(Id notificationId,
IdList planIds)
The callback for notifications of new plans.
|
down, upvoid newPlans(Id notificationId, IdList planIds)
notificationId - the notification Id planIds - the Ids of the new plansmandatory - This method must be implemented. void changedPlans(Id notificationId, IdList planIds)
notificationId - the notification Id planIds - the Ids of the updated plansmandatory - This method must be implemented.