Interface RelationshipEnablerReceiver
- All Superinterfaces:
OsidReceiver
The relationship enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted relationship enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds) The callback for notification of updated relationship enablers.voiddeletedRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds) The callback for notification of deleted relationship enablers.voidnewRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds) The callback for notifications of new relationship enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newRelationshipEnablers
The callback for notifications of new relationship enablers.- Parameters:
notificationId- the notificationIdrelationshipEnablerIds- theIdsof the newRelationshipEnablers- Compliance:
mandatory- This method must be implemented.
-
changedRelationshipEnablers
The callback for notification of updated relationship enablers.- Parameters:
notificationId- the notificationIdrelationshipEnablerIds- theIdsof the updatedRelationshipEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedRelationshipEnablers
The callback for notification of deleted relationship enablers.- Parameters:
notificationId- the notificationIdrelationshipEnablerIds- theIdsof the deletedRelationshipEnablers- Compliance:
mandatory- This method must be implemented.
-