public interface ValueEnablerReceiver extends OsidReceiver
The value enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted value enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedValueEnablers(Id notificationId,
IdList valueEnablerIds)
The callback for notification of updated value enablers.
|
void |
deletedValueEnablers(Id notificationId,
IdList valueEnablerIds)
The callback for notification of deleted value enablers.
|
void |
newValueEnablers(Id notificationId,
IdList valueEnablerIds)
The callback for notifications of new value enablers.
|
down, upvoid newValueEnablers(Id notificationId, IdList valueEnablerIds)
notificationId - the notification Id valueEnablerIds - the Ids of the new
ValueEnablers mandatory - This method must be implemented. void changedValueEnablers(Id notificationId, IdList valueEnablerIds)
notificationId - the notification Id valueEnablerIds - the Ids of the updated
ValueEnablers mandatory - This method must be implemented. void deletedValueEnablers(Id notificationId, IdList valueEnablerIds)
notificationId - the notification Id valueEnablerIds - the Ids of the deleted
ValueEnablers mandatory - This method must be implemented.