OSID Logo
OSID Specifications
ordering package
Version 3.1.0
Interfaceosid.ordering.OrderItemReceiver
Implementsosid.OsidReceiver
Description

The order item receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted OrderItem objects.

Like all OsidReceivers, notifications are delivered to OrderItemReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

MethodnewOrderItems
Description

The callback for notifications of new order items.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListorderItemIds the Ids of the new OrderItems
Compliancemandatory This method must be implemented.
MethodchangedOrderItems
Description

The callback for notification of updated order items.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListorderItemIds the Ids of the updated OrderItems
Compliancemandatory This method must be implemented.
MethoddeletedOrderItems
Description

the callback for notification of deleted order items.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListorderItemIds the Ids of the registered OrderItems
Compliancemandatory This method must be implemented.