Remove OvsdbConfigurationService
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / NetworkingProvider.java
index 80d459754557ac6c19a96def1aa435dedd0c6acf..c5e2f19eafba01a32575a27096292374d642ca3f 100644 (file)
@@ -11,7 +11,6 @@
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
 import org.opendaylight.neutron.spi.NeutronNetwork;
-import org.opendaylight.ovsdb.schema.openvswitch.Interface;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.OvsdbTerminationPointAugmentation;
 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
 
@@ -38,18 +37,13 @@ public interface NetworkingProvider {
     /**
      * Handle Interface Update Callback Method
      */
-    public Status handleInterfaceUpdate(String tunnelType, String tunnelKey);
-
-    /**
-     * Handle Interface Update Callback Method
-     */
-    public Status handleInterfaceUpdate(NeutronNetwork network, Node source, OvsdbTerminationPointAugmentation intf);
+    public boolean handleInterfaceUpdate(NeutronNetwork network, Node source, OvsdbTerminationPointAugmentation intf);
 
     /**
      * Handle Interface Delete Callback Method
      */
-    public Status handleInterfaceDelete(String tunnelType, NeutronNetwork network, Node source,
-                                        OvsdbTerminationPointAugmentation intf, boolean isLastInstanceOnNode);
+    public boolean handleInterfaceDelete(String tunnelType, NeutronNetwork network, Node source,
+                                         OvsdbTerminationPointAugmentation intf, boolean isLastInstanceOnNode);
 
     /**
      * Initialize the Flow rules given the OVSDB node.