public interface DeedReceiver extends OsidReceiver
The deed receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Deed
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedDeeds(IdList deedIds)
The callback for notification of updated deeds.
|
void |
deletedDeeds(IdList deedIds)
the callback for notification of deleted deeds.
|
void |
newDeeds(IdList deedIds)
The callback for notifications of new deeds.
|
down, upvoid newDeeds(IdList deedIds)
deedIds - the Ids of the new Deeds mandatory - This method must be implemented. void changedDeeds(IdList deedIds)
deedIds - the Ids of the updated Deeds
mandatory - This method must be implemented. void deletedDeeds(IdList deedIds)
deedIds - the Ids of the registered Deeds
mandatory - This method must be implemented.