OSID Logo
OSID Specifications
inventory package
Version 3.1.0
Interfaceosid.inventory.ModelReceiver
Implementsosid.OsidReceiver
Description

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

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

MethodnewModels
Description

The callback for notifications of new models.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListmodelIds the Ids of the new Models
Compliancemandatory This method must be implemented.
MethodchangedModels
Description

The callback for notification of updated models.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListmodelIds the Ids of the updated Models
Compliancemandatory This method must be implemented.
MethoddeletedModels
Description

The callback for notification of deleted models.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListmodelIds the Ids of the deleted Models
Compliancemandatory This method must be implemented.