ccc73919b66ae440e43956d26517d90bc97778e0
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / NotificationListener.java
1 package org.opendaylight.controller.sal.binding.api;
2
3 public interface NotificationListener<T> {
4
5     void onNotification(T notification);
6 }