public interface BusinessReceiver extends OsidReceiver
The business receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Business objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBusinesses(Id notificationId,
IdList businessIds)
The callback for notification of updated businesses.
|
void |
changedChildOfBusinesses(Id notificationId,
IdList businessIds)
The callback for notifications of changes to children of business
hierarchy nodes.
|
void |
deletedBusinesses(Id notificationId,
IdList businessIds)
The callback for notification of deleted businesses.
|
void |
newBusinesses(Id notificationId,
IdList businessIds)
The callback for notifications of new businesses.
|
down, upvoid newBusinesses(Id notificationId, IdList businessIds)
notificationId - the notification IdbusinessIds - the Id of the new Businesses
mandatory - This method must be implemented. void changedBusinesses(Id notificationId, IdList businessIds)
notificationId - the notification IdbusinessIds - the Id of the updated
Businesses mandatory - This method must be implemented. void deletedBusinesses(Id notificationId, IdList businessIds)
notificationId - the notification IdbusinessIds - the Id of the deleted
Businesses mandatory - This method must be implemented. void changedChildOfBusinesses(Id notificationId, IdList businessIds)
notificationId - the notification Id businessIds - the Ids of the Businesses
whose children have changedmandatory - This method must be implemented.