use of org.opendaylight.controller.md.sal.dom.api.DOMNotification in project controller by opendaylight.
the class BindingDOMNotificationListenerAdapter method onNotification.
@Override
public void onNotification(@Nonnull final DOMNotification notification) {
final Notification baNotification = deserialize(notification);
final QName notificationQName = notification.getType().getLastComponent();
getInvoker(notification.getType()).invokeNotification(delegate, notificationQName, baNotification);
}
Aggregations