public interface CompetencyReceiver extends OsidReceiver
The competency receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted competencies.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCompetencies(IdList competencyIds)
The callback for notification of updated competencies.
|
void |
deletedCompetencies(IdList competencyIds)
The callback for notification of deleted competencies.
|
void |
newCompetencies(IdList competencyIds)
The callback for notifications of new competencies.
|
down, upvoid newCompetencies(IdList competencyIds)
competencyIds - the Ids of the new
Competencies mandatory - This method must be implemented. void changedCompetencies(IdList competencyIds)
competencyIds - the Ids of the updated
Competencies mandatory - This method must be implemented. void deletedCompetencies(IdList competencyIds)
competencyIds - the Ids of the deleted
Competencies mandatory - This method must be implemented.