public interface LeaseReceiver extends OsidReceiver
The lease receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Lease
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedLeases(IdList leaseIds)
The callback for notification of updated leases.
|
void |
deletedLeases(IdList leaseIds)
the callback for notification of deleted leases.
|
void |
newLeases(IdList leaseIds)
The callback for notifications of new leases.
|
down, upvoid newLeases(IdList leaseIds)
leaseIds - the Ids of the new Leases
mandatory - This method must be implemented. void changedLeases(IdList leaseIds)
leaseIds - the Ids of the updated Leases
mandatory - This method must be implemented. void deletedLeases(IdList leaseIds)
leaseIds - the Ids of the registered
Leases mandatory - This method must be implemented.