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 |
changedBudgetEntry(Id budgetEntryId)
The callback for notification of updated budget entries.
|
void |
deletedBudgetEntry(Id budgetEntryId)
the callback for notification of deleted budget entries.
|
void |
newBudgetEntry(Id budgetEntryId)
The callback for notifications of new budget entries.
|
down, upvoid newBudgetEntry(Id budgetEntryId)
budgetEntryId - the Id of the new
BudgetEntry mandatory - This method must be implemented. void changedBudgetEntry(Id budgetEntryId)
budgetEntryId - the Id of the updated
BudgetEntry mandatory - This method must be implemented. void deletedBudgetEntry(Id budgetEntryId)
budgetEntryId - the Id of the deleted
BudgetEntry mandatory - This method must be implemented.