public interface RelationshipReceiver extends OsidReceiver
The relationship receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Relationship objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRelationships(Id notificationId,
IdList relationshipIds)
The callback for notification of updated relationships.
|
void |
deletedRelationships(Id notificationId,
IdList relationshipIds)
the callback for notification of deleted relationships.
|
void |
newRelationships(Id notificationId,
IdList relationshipIds)
The callback for notifications of new relationships.
|
down, upvoid newRelationships(Id notificationId, IdList relationshipIds)
notificationId - the notification Id relationshipIds - the Ids of the new
Relationships mandatory - This method must be implemented. void changedRelationships(Id notificationId, IdList relationshipIds)
notificationId - the notification Id relationshipIds - the Ids of the updated
Relationships mandatory - This method must be implemented. void deletedRelationships(Id notificationId, IdList relationshipIds)
notificationId - the notification Id relationshipIds - the Ids of the deleted
Relationships mandatory - This method must be implemented.