public interface BranchReceiver extends OsidReceiver
The branch receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Branch
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBranches(Id notificationId,
IdList branchIds)
The callback for notification of updated branches.
|
void |
deletedBranches(Id notificationId,
IdList branchIds)
the callback for notification of deleted branches.
|
void |
newBranches(Id notificationId,
IdList branchIds)
The callback for notifications of new branches.
|
down, upvoid newBranches(Id notificationId, IdList branchIds)
notificationId - the notification IdbranchIds - the Ids of the new Branches
mandatory - This method must be implemented. void changedBranches(Id notificationId, IdList branchIds)
notificationId - the notification IdbranchIds - the Ids of the updated
Branches mandatory - This method must be implemented.