public interface ParameterProcessorReceiver extends OsidReceiver
The parameter processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted parameter processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedParameterProcessors(Id notificationId,
IdList parameterProcessorIds)
The callback for notification of updated parameter processors.
|
void |
deletedParameterProcessors(Id notificationId,
IdList parameterProcessorIds)
The callback for notification of deleted parameter processors.
|
void |
newParameterProcessors(Id notificationId,
IdList parameterProcessorIds)
The callback for notifications of new parameter processors.
|
down, upvoid newParameterProcessors(Id notificationId, IdList parameterProcessorIds)
notificationId - the notification IdparameterProcessorIds - the Ids of the new
ParameterProcessors mandatory - This method must be implemented. void changedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
notificationId - the notification IdparameterProcessorIds - the Ids of the updated
ParameterProcessors mandatory - This method must be implemented. void deletedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
notificationId - the notification IdparameterProcessorIds - the Ids of the deleted
ParameterProcessors mandatory - This method must be implemented.