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 |
changedAgendas(IdList agendaIds)
The callback for notification of updated agendas.
|
void |
deletedAgendas(IdList agendaIds)
The callback for notification of deleted agendas.
|
void |
newAgendas(IdList agendaIds)
The callback for notifications of new agendas.
|
down, upvoid newAgendas(IdList agendaIds)
agendaIds - the Ids of the new Agendas
mandatory - This method must be implemented. void changedAgendas(IdList agendaIds)
agendaIds - the Ids of the updated Agendas
mandatory - This method must be implemented. void deletedAgendas(IdList agendaIds)
agendaIds - the Ids of the deleted Agendas
mandatory - This method must be implemented.