Squashed commit of the following:
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / RoutingProvider.java
index 18b3f3150bf4d63d2c4fecb1322a476761abf3c0..8b77f1f5fb0faada24b9eb12e6b2b2d6a048e51e 100644 (file)
@@ -10,9 +10,6 @@
 
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
-import org.opendaylight.controller.sal.core.Node;
-import org.opendaylight.controller.sal.utils.Status;
-
 import java.net.InetAddress;
 
 /**
@@ -20,10 +17,10 @@ import java.net.InetAddress;
  */
 public interface RoutingProvider {
 
-    Status programRouterInterface(Node node, Long dpid, String segmentationId, String macAddress,
+    Status programRouterInterface(Long dpid, String srcSegId, String dstSegId, String macAddress,
                                   InetAddress address, int mask, Action action);
 
-    Status programDefaultRouteEntry(Node node, Long dpid, String segmentationId, String macAddress,
+    Status programDefaultRouteEntry(Long dpid, String segmentationId, String macAddress,
                                     InetAddress nextHop, Action action);
 
 }