public interface ProficiencyReceiver extends OsidReceiver
The proficiency receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted proficiencies.
Modifier and Type | Method and Description |
---|---|
void |
changedProficiencies(Id notificationId,
IdList proficiencyIds)
The callback for notification of updated proficiencies.
|
void |
deletedProficiencies(Id notificationId,
IdList proficiencyIds)
The callback for notification of deleted proficiencies.
|
void |
newProficiencies(Id notificationId,
IdList proficiencyIds)
The callback for notifications of new proficiencies.
|
down, up
void newProficiencies(Id notificationId, IdList proficiencyIds)
notificationId
- the notification Id
proficiencyIds
- the Ids
of the new
Proficiencies
mandatory
- This method must be implemented. void changedProficiencies(Id notificationId, IdList proficiencyIds)
notificationId
- the notification Id
proficiencyIds
- the Ids
of the updated
Proficiencies
mandatory
- This method must be implemented. void deletedProficiencies(Id notificationId, IdList proficiencyIds)
notificationId
- the notification Id
proficiencyIds
- the Ids
of the deleted
Proficiencies
mandatory
- This method must be implemented.