public interface AvailabilityEnablerReceiver extends OsidReceiver
The availability enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted availability enablers.
Modifier and Type | Method and Description |
---|---|
void |
changedAvailabilityEnabler(Id availabilityEnablerId)
The callback for notification of updated availability enablers.
|
void |
deletedAvailabilityEnabler(Id availabilityEnablerId)
The callback for notification of deleted availability enablers.
|
void |
newAvailabilityEnabler(Id availabilityEnablerId)
The callback for notifications of new availability enablers.
|
down, up
void newAvailabilityEnabler(Id availabilityEnablerId)
availabilityEnablerId
- the Id
of the new
AvailabilityEnabler
mandatory
- This method must be implemented. void changedAvailabilityEnabler(Id availabilityEnablerId)
availabilityEnablerId
- the Id
of the updated
AvailabilityEnabler
mandatory
- This method must be implemented. void deletedAvailabilityEnabler(Id availabilityEnablerId)
availabilityEnablerId
- the Id
of the deleted
AvailabilityEnabler
mandatory
- This method must be implemented.