public interface BallotConstrainerReceiver extends OsidReceiver
The ballot constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted ballot constrainers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBallotConstrainers(Id notificationId,
IdList ballotConstrainerIds)
The callback for notification of updated ballot constrainers.
|
void |
deletedBallotConstrainers(Id notificationId,
IdList ballotConstrainerIds)
The callback for notification of deleted ballot constrainers.
|
void |
newBallotConstrainers(Id notificationId,
IdList ballotConstrainerIds)
The callback for notifications of new ballot constrainers.
|
down, upvoid newBallotConstrainers(Id notificationId, IdList ballotConstrainerIds)
notificationId - the notification IdballotConstrainerIds - the Ids of the new
BallotConstrainers mandatory - This method must be implemented. void changedBallotConstrainers(Id notificationId, IdList ballotConstrainerIds)
notificationId - the notification IdballotConstrainerIds - the Ids of the updated
BallotConstrainers mandatory - This method must be implemented. void deletedBallotConstrainers(Id notificationId, IdList ballotConstrainerIds)
notificationId - the notification IdballotConstrainerIds - the Ids of the deleted
BallotConstrainers mandatory - This method must be implemented.