public interface RelationshipEnablerReceiver extends OsidReceiver
The relationship enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted relationship enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRelationshipEnablers(Id notificationId,
IdList relationshipEnablerIds)
The callback for notification of updated relationship enablers.
|
void |
deletedRelationshipEnablers(Id notificationId,
IdList relationshipEnablerIds)
The callback for notification of deleted relationship enablers.
|
void |
newRelationshipEnablers(Id notificationId,
IdList relationshipEnablerIds)
The callback for notifications of new relationship enablers.
|
down, upvoid newRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds)
notificationId - the notification Id relationshipEnablerIds - the Ids of the new
RelationshipEnablers mandatory - This method must be implemented. void changedRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds)
notificationId - the notification Id relationshipEnablerIds - the Ids of the updated
RelationshipEnablers mandatory - This method must be implemented. void deletedRelationshipEnablers(Id notificationId, IdList relationshipEnablerIds)
notificationId - the notification Id relationshipEnablerIds - the Ids of the deleted
RelationshipEnablers mandatory - This method must be implemented.