Merge from development repository.
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-broker-impl / src / main / java / org / opendaylight / controller / sal / binding / impl / NotificationInvoker.java
1 package org.opendaylight.controller.sal.binding.impl;
2
3 import org.opendaylight.controller.sal.binding.spi.MappingProvider.MappingExtension;
4 import org.opendaylight.controller.yang.binding.Notification;
5 import org.opendaylight.controller.yang.binding.NotificationListener;
6
7 public interface NotificationInvoker extends MappingExtension {
8     void notify(Notification notification, NotificationListener listener);
9 }