Interface RequestTransactionReceiver
- All Superinterfaces:
OsidReceiver
The request transaction receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
RequestTransaction objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedRequestTransactions(Id notificationId, IdList requestTransactionIds) The callback for notification of updated request transactions.voiddeletedRequestTransactions(Id notificationId, IdList requestTransactionIds) The callback for notification of deleted request transactions.voidnewRequestTransactions(Id notificationId, IdList requestTransactionIds) The callback for notifications of new request transactions.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newRequestTransactions
The callback for notifications of new request transactions.- Parameters:
notificationId- the notificationIdrequestTransactionIds- theIdsof the newRequestTransactions- Compliance:
mandatory- This method must be implemented.
-
changedRequestTransactions
The callback for notification of updated request transactions.- Parameters:
notificationId- the notificationIdrequestTransactionIds- theIdsof the updatedRequestTransactions- Compliance:
mandatory- This method must be implemented.
-
deletedRequestTransactions
The callback for notification of deleted request transactions.- Parameters:
notificationId- the notificationIdrequestTransactionIds- theIdsof the deletedRequestTransactions- Compliance:
mandatory- This method must be implemented.
-