public interface SequenceRuleEnablerReceiver extends OsidReceiver
The sequence rule enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted sequence rule enablers.
Modifier and Type | Method and Description |
---|---|
void |
changedSequenceRuleEnablers(Id notificationId,
IdList sequenceRuleEnablerIds)
The callback for notification of updated sequence rule enablers.
|
void |
deletedSequenceRuleEnablers(Id notificationId,
IdList sequenceRuleEnablerIds)
The callback for notification of deleted sequence rule enablers.
|
void |
newSequenceRuleEnablers(Id notificationId,
IdList sequenceRuleEnablerIds)
The callback for notifications of new sequence rule enablers.
|
down, up
void newSequenceRuleEnablers(Id notificationId, IdList sequenceRuleEnablerIds)
notificationId
- the notification Id
sequenceRuleEnablerIds
- the Ids
of the new
SequenceRuleEnablers
mandatory
- This method must be implemented. void changedSequenceRuleEnablers(Id notificationId, IdList sequenceRuleEnablerIds)
notificationId
- the notification Id
sequenceRuleEnablerIds
- the Ids
of the updated
SequenceRuleEnablers
mandatory
- This method must be implemented. void deletedSequenceRuleEnablers(Id notificationId, IdList sequenceRuleEnablerIds)
notificationId
- the notification Id
sequenceRuleEnablerIds
- the Ids
of the deleted
SequenceRuleEnablers
mandatory
- This method must be implemented.