bc251b1d9df5cebb6727f7258db4320e9cee18ca
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / sal / binding / test / mock / BarListener.java
1 package org.opendaylight.controller.sal.binding.test.mock;
2
3 import org.opendaylight.yangtools.yang.binding.NotificationListener;
4
5 public interface BarListener extends NotificationListener {
6
7     void onBarUpdate(BarUpdate notification);
8     
9     void onFlowDelete(FlowDelete notification);
10
11 }