4835537c14404c2fea1c84a85bc18b0013bf6a9a
[controller.git] / opendaylight / md-sal / sal-binding-broker / 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     
9 }