Use Topology Node in place of Inventory Node
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / RoutingProvider.java
index b9cb8d3e734e4c2fd1273936d1110be05239a0dd..8b77f1f5fb0faada24b9eb12e6b2b2d6a048e51e 100644 (file)
@@ -10,8 +10,6 @@
 
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
-
 import java.net.InetAddress;
 
 /**
@@ -19,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);
 
 }