public interface ReceiptReceiver extends OsidReceiver
The receipt receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Receipt
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedReceipts(IdList receiptIds)
The callback for notification of updated receipts.
|
void |
deletedReceipts(IdList receiptIds)
the callback for notification of deleted receipts.
|
void |
newReceipts(IdList receiptIds)
The callback for notifications of new receipts.
|
down, upvoid newReceipts(IdList receiptIds)
receiptIds - the Ids of the new Receipts
mandatory - This method must be implemented. void changedReceipts(IdList receiptIds)
receiptIds - the Ids of the updated
Receipts mandatory - This method must be implemented. void deletedReceipts(IdList receiptIds)
receiptIds - the Ids of the deleted
Receipts mandatory - This method must be implemented.