Interface ResourceRelationshipReceiver
- All Superinterfaces:
OsidReceiver
The resource relationship receiver is the consumer supplied interface
for receiving notifications pertaining to new, updated or deleted
ResourceRelationships .
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedResourceRelationships(Id notificationId, IdList resourceRelationshipIds) The callback for notification of updated relationships.voiddeletedResourceRelationships(Id notificationId, IdList resourceRelationshipIds) The callback for notification of deleted relationships.voidnewResourceRelationships(Id notificationId, IdList resourceRelationshipIds) The callback for notifications of new relationships.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newResourceRelationships
The callback for notifications of new relationships.- Parameters:
notificationId- the notificationIdresourceRelationshipIds- theIdsof the newResourceRelationships- Compliance:
mandatory- This method must be implemented.
-
changedResourceRelationships
The callback for notification of updated relationships.- Parameters:
notificationId- the notificationIdresourceRelationshipIds- theIdsof the updatedResourceRelationships- Compliance:
mandatory- This method must be implemented.
-
deletedResourceRelationships
The callback for notification of deleted relationships.- Parameters:
notificationId- the notificationIdresourceRelationshipIds- theIdsof the deletedResourceRelationships- Compliance:
mandatory- This method must be implemented.
-