public interface EdgeEnablerReceiver extends OsidReceiver
The edge enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted edge enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedEdgeEnabler(Id edgeEnablerId)
The callback for notification of updated edge enablers.
|
void |
deletedEdgeEnabler(Id edgeEnablerId)
The callback for notification of deleted edge enablers.
|
void |
newEdgeEnabler(Id edgeEnablerId)
The callback for notifications of new edge enablers.
|
down, upvoid newEdgeEnabler(Id edgeEnablerId)
edgeEnablerId - the Id of the new
EdgeEnabler mandatory - This method must be implemented. void changedEdgeEnabler(Id edgeEnablerId)
edgeEnablerId - the Id of the updated
EdgeEnabler mandatory - This method must be implemented. void deletedEdgeEnabler(Id edgeEnablerId)
edgeEnablerId - the Id of the deleted
EdgeEnabler mandatory - This method must be implemented.