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 |
changedBranch(Id branchId)
The callback for notification of updated branches.
|
void |
deletedBranch(Id branchId)
the callback for notification of deleted branches.
|
void |
newBranch(Id branchId)
The callback for notifications of new branches.
|
down, upvoid newBranch(Id branchId)
branchId - the Id of the new Branch
mandatory - This method must be implemented. void changedBranch(Id branchId)
branchId - the Id of the updated Branch
mandatory - This method must be implemented. void deletedBranch(Id branchId)
branchId - the Id of the deleted Branch
mandatory - This method must be implemented.