public interface ShipmentReceiver extends OsidReceiver
The shipment receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Shipment
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedShipments(Id notificationId,
IdList shipmentIds)
The callback for notification of updated shipments.
|
void |
deletedShipments(Id notificationId,
IdList shipmentIds)
the callback for notification of deleted shipments.
|
void |
newShipments(Id notificationId,
IdList shipmentIds)
The callback for notifications of new shipments.
|
down, upvoid newShipments(Id notificationId, IdList shipmentIds)
notificationId - the notification Id shipmentIds - the Id of the new Shipments
mandatory - This method must be implemented. void changedShipments(Id notificationId, IdList shipmentIds)
notificationId - the notification Id shipmentIds - the Id of the updated
Shipments mandatory - This method must be implemented.