public interface FamilyReceiver extends OsidReceiver
The family receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Family
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfFamilies(Id notificationId,
IdList familyIds)
The callback for notifications of changes to children of family
hierarchy nodes.
|
void |
changedFamilies(Id notificationId,
IdList familyIds)
The callback for notification of updated families.
|
void |
deletedFamilies(Id notificationId,
IdList familyIds)
the callback for notification of deleted familys.
|
void |
newFamilies(Id notificationId,
IdList familyIds)
The callback for notifications of new families.
|
down, upvoid newFamilies(Id notificationId, IdList familyIds)
notificationId - the notification Id familyIds - the Ids of the new Families
mandatory - This method must be implemented. void changedFamilies(Id notificationId, IdList familyIds)
notificationId - the notification Id familyIds - the Ids of the updated
Families mandatory - This method must be implemented. void deletedFamilies(Id notificationId, IdList familyIds)
notificationId - the notification Id familyIds - the Ids of the registered
Families mandatory - This method must be implemented. void changedChildOfFamilies(Id notificationId, IdList familyIds)
notificationId - the notification Id familyIds - the Ids of the Families
whose children have changedmandatory - This method must be implemented.