public interface CreditReceiver extends OsidReceiver
The credit receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted credits.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCredits(Id notificationId,
IdList creditIds)
The callback for notifications of updated credits.
|
void |
deletedCredits(Id notificationId,
IdList creditIds)
the callback for notification of deleted credits.
|
void |
newCredits(Id notificationId,
IdList creditIds)
The callback for notifications of new credits.
|
down, upvoid newCredits(Id notificationId, IdList creditIds)
notificationId - the notification Id creditIds - the Ids of the new creditsmandatory - This method must be implemented. void changedCredits(Id notificationId, IdList creditIds)
notificationId - the notification Id creditIds - the Ids of the updated creditsmandatory - This method must be implemented.