public interface BudgetReceiver extends OsidReceiver
The budget receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted budget objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBudgets(Id notificationId,
IdList budgetIds)
The callback for notification of updated budgets.
|
void |
deletedBudgets(Id notificationId,
IdList budgetIds)
The callback for notification of deleted budgets.
|
void |
newBudgets(Id notificationId,
IdList budgetIds)
The callback for notifications of new budgets.
|
down, upvoid newBudgets(Id notificationId, IdList budgetIds)
notificationId - the notification IdbudgetIds - the Ids of the new Budgets
mandatory - This method must be implemented. void changedBudgets(Id notificationId, IdList budgetIds)
notificationId - the notification IdbudgetIds - the Ids of the updated Budgets
mandatory - This method must be implemented.