public interface ProfileItemReceiver extends OsidReceiver
The profile item receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
ProfileItems.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProfileItems(Id notificationId,
IdList profileItemIds)
The callback for notification of updated profile items.
|
void |
deletedProfileItems(Id notificationId,
IdList profileItemIds)
The callback for notification of deleted profile items.
|
void |
newProfileItems(Id notificationId,
IdList profileItemIds)
The callback for notifications of new profile items.
|
down, upvoid newProfileItems(Id notificationId, IdList profileItemIds)
notificationId - the notification Id profileItemIds - the Ids of the new
ProfileItems mandatory - This method must be implemented. void changedProfileItems(Id notificationId, IdList profileItemIds)
notificationId - the notification Id profileItemIds - the Ids of the updated
ProfileItems mandatory - This method must be implemented. void deletedProfileItems(Id notificationId, IdList profileItemIds)
notificationId - the notification Id profileItemIds - the Ids of the deleted
ProfileItems mandatory - This method must be implemented.