Interface ParameterProcessorReceiver
- All Superinterfaces:
OsidReceiver
The parameter processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted parameter processors.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedParameterProcessors(Id notificationId, IdList parameterProcessorIds) The callback for notification of updated parameter processors.voiddeletedParameterProcessors(Id notificationId, IdList parameterProcessorIds) The callback for notification of deleted parameter processors.voidnewParameterProcessors(Id notificationId, IdList parameterProcessorIds) The callback for notifications of new parameter processors.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newParameterProcessors
The callback for notifications of new parameter processors.- Parameters:
notificationId- the notification IdparameterProcessorIds- theIdsof the newParameterProcessors- Compliance:
mandatory- This method must be implemented.
-
changedParameterProcessors
The callback for notification of updated parameter processors.- Parameters:
notificationId- the notification IdparameterProcessorIds- theIdsof the updatedParameterProcessors- Compliance:
mandatory- This method must be implemented.
-
deletedParameterProcessors
The callback for notification of deleted parameter processors.- Parameters:
notificationId- the notification IdparameterProcessorIds- theIdsof the deletedParameterProcessors- Compliance:
mandatory- This method must be implemented.
-