Merge "Add MD-SAL Adapter for the OVSDB Plugin"
[ovsdb.git] / plugin-mdsal-adapter / src / main / java / org / opendaylight / ovsdb / plugin / md / OvsdbBindingAwareProvider.java
1 package org.opendaylight.ovsdb.plugin.md;
2
3 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
4 import org.opendaylight.controller.sal.binding.api.NotificationService;
5
6 /**
7  * Created by dave on 01/08/2014.
8  */
9 public interface OvsdbBindingAwareProvider {
10     public DataBroker getDataBroker();
11     public NotificationService getNotificationService();
12 }