public interface ParameterProcessorEnablerReceiver extends OsidReceiver
The parameter processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted parameter processor enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedParameterProcessorEnablers(Id notificationId,
IdList parameterProcessorEnablerIds)
The callback for notification of updated parameter processor enablers.
|
void |
deletedParameterProcessorEnablers(Id notificationId,
IdList parameterProcessorEnablerIds)
The callback for notification of deleted parameter processor enablers.
|
void |
newParameterProcessorEnablers(Id notificationId,
IdList parameterProcessorEnablerIds)
The callback for notifications of new parameter processor enablers.
|
down, upvoid newParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
notificationId - the notification Id parameterProcessorEnablerIds - the Id of the new
ParameterProcessorEnablers mandatory - This method must be implemented. void changedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
notificationId - the notification Id parameterProcessorEnablerIds - the Id of the
updated ParameterProcessorEnablers mandatory - This method must be implemented. void deletedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
notificationId - the notification Id parameterProcessorEnablerIds - the Id of the
deleted ParameterProcessorEnablers mandatory - This method must be implemented.