public interface ConferralReceiver extends OsidReceiver
The conferral receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted conferrals.
| Modifier and Type | Method and Description |
|---|---|
void |
changedConferrals(IdList conferralIds)
The callback for notifications of updated conferrals.
|
void |
deletedConferrals(IdList conferralIds)
the callback for notification of deleted conferrals.
|
void |
newConferrals(IdList conferralIds)
The callback for notifications of new conferrals.
|
down, upvoid newConferrals(IdList conferralIds)
conferralIds - the Ids of the new conferralsmandatory - This method must be implemented. void changedConferrals(IdList conferralIds)
conferralIds - the Ids of the updated conferralsmandatory - This method must be implemented. void deletedConferrals(IdList conferralIds)
conferralIds - the Ids of the deleted conferralsmandatory - This method must be implemented.