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 |
changedCompetency(Id competencyId)
The callback for notification of updated competencies.
|
void |
deletedCompetency(Id competencyId)
The callback for notification of deleted competencies.
|
void |
newCompetency(Id competencyId)
The callback for notifications of new competencies.
|
down, upvoid newCompetency(Id competencyId)
competencyId - the Id of the new
Competency mandatory - This method must be implemented. void changedCompetency(Id competencyId)
competencyId - the Id of the updated
Competency mandatory - This method must be implemented. void deletedCompetency(Id competencyId)
competencyId - the Id of the deleted
Competency mandatory - This method must be implemented.