Squashed commit of the following:
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / RoutingProvider.java
index 62bad2ba5bdc78171ed2f45f5b9d3228cca720d4..8b77f1f5fb0faada24b9eb12e6b2b2d6a048e51e 100644 (file)
@@ -10,9 +10,6 @@
 
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
-import org.opendaylight.ovsdb.plugin.api.Status;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
-
 import java.net.InetAddress;
 
 /**
@@ -20,10 +17,10 @@ import java.net.InetAddress;
  */
 public interface RoutingProvider {
 
-    Status programRouterInterface(Node node, Long dpid, String srcSegId, String dstSegId, 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);
 
 }