public interface DemographicReceiver extends OsidReceiver
The demographic receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted demographics.
Modifier and Type | Method and Description |
---|---|
void |
changedDemographic(Id demographicId)
The callback for notification of updated demographics.
|
void |
deletedDemographic(Id demographicId)
The callback for notification of deleted demographics.
|
void |
newDemographic(Id demographicId)
The callback for notifications of new demographics.
|
down, up
void newDemographic(Id demographicId)
demographicId
- the Id
of the new
Demographic
mandatory
- This method must be implemented. void changedDemographic(Id demographicId)
demographicId
- the Id
of the updated
Demographic
mandatory
- This method must be implemented. void deletedDemographic(Id demographicId)
demographicId
- the Id
of the deleted
Demographic
mandatory
- This method must be implemented.