public interface ProfileReceiver extends OsidReceiver
The profile receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Profile
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfProfiles(Id notificationId,
IdList profileIds)
The callback for notifications of changes to children of profile
hierarchy nodes.
|
void |
changedProfiles(Id notificationId,
IdList profileIds)
The callback for notification of updated profiles.
|
void |
deletedProfiles(Id notificationId,
IdList profileIds)
The callback for notification of deleted profiles.
|
void |
newProfiles(Id notificationId,
IdList profileIds)
The callback for notifications of new profiles.
|
down, upvoid newProfiles(Id notificationId, IdList profileIds)
notificationId - the notification Id profileIds - the Ids of the new Profiles
mandatory - This method must be implemented. void changedProfiles(Id notificationId, IdList profileIds)
notificationId - the notification Id profileIds - the Ids of the updated
Profiles mandatory - This method must be implemented. void deletedProfiles(Id notificationId, IdList profileIds)
notificationId - the notification Id profileIds - the Ids of the deleted
Profiles mandatory - This method must be implemented. void changedChildOfProfiles(Id notificationId, IdList profileIds)
notificationId - the notification Id profileIds - the Ids of the Profiles
whose children have changedmandatory - This method must be implemented.