Interface AccountReceiver
- All Superinterfaces:
OsidReceiver
The account receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Account
objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedAccounts(Id notificationId, IdList accountIds) The callback for notification of updated accounts.voidchangedChildOfAccounts(Id notificationId, IdList accountIds) The callback for notifications of changes to children of account hierarchy nodes.voiddeletedAccounts(Id notificationId, IdList accountIds) the callback for notification of deleted accounts.voidnewAccounts(Id notificationId, IdList accountIds) The callback for notifications of new accounts.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newAccounts
-
changedAccounts
-
deletedAccounts
-
changedChildOfAccounts
The callback for notifications of changes to children of account hierarchy nodes.- Parameters:
notificationId- the notificationIdaccountIds- theIdsof theAccountswhose children have changed- Compliance:
mandatory- This method must be implemented.
-