public interface CustomerReceiver extends OsidReceiver
The customer receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Customer
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCustomers(Id notificationId,
IdList customerIds)
The callback for notification of updated customers.
|
void |
deletedCustomers(Id notificationId,
IdList customerIds)
the callback for notification of deleted customers.
|
void |
newCustomers(Id notificationId,
IdList customerIds)
The callback for notifications of new customers.
|
down, upvoid newCustomers(Id notificationId, IdList customerIds)
notificationId - the notification Id customerIds - the Id of the new Customers
mandatory - This method must be implemented. void changedCustomers(Id notificationId, IdList customerIds)
notificationId - the notification Id customerIds - the Id of the updated
Customers mandatory - This method must be implemented.