public interface RuleReceiver extends OsidReceiver
The rule receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted rules.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRules(Id notificationId,
IdList ruleIds)
the callback for notification of changed rules.
|
void |
deletedRules(Id notificationId,
IdList ruleIds)
the callback for notification of deleted rules.
|
void |
newRules(Id notificationId,
IdList ruleIds)
The callback for notifications of new rules.
|
down, upvoid newRules(Id notificationId, IdList ruleIds)
notificationId - the notification Id ruleIds - the Ids of the new rulesmandatory - This method must be implemented. void changedRules(Id notificationId, IdList ruleIds)
notificationId - the notification Id ruleIds - the Ids of the changed rulesmandatory - This method must be implemented.