public interface AgendaReceiver extends OsidReceiver
The agenda receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Agenda
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAgenda(Id agendaId)
The callback for notification of updated agendas.
|
void |
deletedAgenda(Id agendaId)
The callback for notification of deleted agendas.
|
void |
newAgenda(Id agendaId)
The callback for notifications of new agendas.
|
down, upvoid newAgenda(Id agendaId)
agendaId - the Id of the new Agenda
mandatory - This method must be implemented. void changedAgenda(Id agendaId)
agendaId - the Id of the updated Agenda
mandatory - This method must be implemented. void deletedAgenda(Id agendaId)
agendaId - the Id of the deleted Agenda
mandatory - This method must be implemented.