public interface CandidateReceiver extends OsidReceiver
The candidate receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Candidate
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCandidates(IdList candidateIds)
The callback for notification of updated candidates.
|
void |
deletedCandidates(IdList candidateIds)
the callback for notification of deleted candidates.
|
void |
newCandidates(IdList candidateIds)
The callback for notifications of new candidates.
|
down, upvoid newCandidates(IdList candidateIds)
candidateIds - the Ids of the new
Candidates mandatory - This method must be implemented. void changedCandidates(IdList candidateIds)
candidateIds - the Ids of the updated
Candidates mandatory - This method must be implemented. void deletedCandidates(IdList candidateIds)
candidateIds - the Ids of the deleted
Candidates mandatory - This method must be implemented.