public interface ConvocationReceiver extends OsidReceiver
The convocation receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted convocations.
| Modifier and Type | Method and Description |
|---|---|
void |
changedConvocation(IdList convocationIds)
The callback for notifications of updated convocations.
|
void |
deletedConvocation(IdList convocationIds)
the callback for notification of deleted convocations.
|
void |
newConvocation(IdList convocationIds)
The callback for notifications of new convocations.
|
down, upvoid newConvocation(IdList convocationIds)
convocationIds - the Ids of the new convocationsmandatory - This method must be implemented. void changedConvocation(IdList convocationIds)
convocationIds - the Ids of the updated
convocationsmandatory - This method must be implemented. void deletedConvocation(IdList convocationIds)
convocationIds - the Ids of the deleted
convocationsmandatory - This method must be implemented.