public interface SequenceRuleReceiver extends OsidReceiver
The sequence rule receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted sequence rules.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSequenceRules(Id notificationId,
IdList sequenceRuleIds)
The callback for notification of updated sequence rules.
|
void |
deletedSequenceRules(Id notificationId,
IdList sequenceRuleIds)
The callback for notification of deleted sequence rules.
|
void |
newSequenceRules(Id notificationId,
IdList sequenceRuleIds)
The callback for notifications of new sequence rules.
|
down, upvoid newSequenceRules(Id notificationId, IdList sequenceRuleIds)
notificationId - the notification Id sequenceRuleIds - the Ids of the new
SequenceRules mandatory - This method must be implemented. void changedSequenceRules(Id notificationId, IdList sequenceRuleIds)
notificationId - the notification Id sequenceRuleIds - the Ids of the updated
SequenceRules mandatory - This method must be implemented. void deletedSequenceRules(Id notificationId, IdList sequenceRuleIds)
notificationId - the notification Id sequenceRuleIds - the Ids of the deleted
SequenceRules mandatory - This method must be implemented.