3629689cdf33cc83af1deccb36e15341b3c5cc4a
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-broker-impl / src / test / java / org / opendaylight / controller / sal / binding / test / mock / FooListener.java
1 package org.opendaylight.controller.sal.binding.test.mock;
2
3 import org.opendaylight.yangtools.yang.binding.NotificationListener;
4
5 public interface FooListener extends NotificationListener {
6
7     void onFooUpdate(FooUpdate notification);
8     void onBarUpdate(BarUpdate notification);
9     
10 }