public interface BudgetEntryReceiver extends OsidReceiver
The budget entry receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
BudgetEntry objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBudgetEntries(Id notificationId,
IdList budgetEntryIds)
The callback for notification of updated budget entries.
|
void |
deletedBudgetEntries(Id notificationId,
IdList budgetEntryIds)
the callback for notification of deleted budget entries.
|
void |
newBudgetEntries(Id notificationId,
IdList budgetEntryIds)
The callback for notifications of new budget entries.
|
down, upvoid newBudgetEntries(Id notificationId, IdList budgetEntryIds)
notificationId - the notification Id budgetEntryIds - the Ids of the new
BudgetEntries mandatory - This method must be implemented. void changedBudgetEntries(Id notificationId, IdList budgetEntryIds)
notificationId - the notification Id budgetEntryIds - the Ids of the updated
BudgetEntries mandatory - This method must be implemented. void deletedBudgetEntries(Id notificationId, IdList budgetEntryIds)
notificationId - the notification Id budgetEntryIds - the Ids of the deleted
BudgetEntries mandatory - This method must be implemented.