Use Topology Node in place of Inventory Node
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / InboundNatProvider.java
index ba8daac0905d27710d72f6d462b00d0ed16149c4..aa2f91a6212e1f0da6fd575f4c4ce22a44f79861 100644 (file)
 
 package org.opendaylight.ovsdb.openstack.netvirt.api;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
-
 import java.net.InetAddress;
 
 /**
  *  This interface allows NAT flows to be written to devices
  */
 public interface InboundNatProvider {
-    Status programIpRewriteRule(Node node, Long dpid, String segmentationId, InetAddress matchAddress,
+    Status programIpRewriteRule(Long dpid, String segmentationId, InetAddress matchAddress,
                                 InetAddress rewriteAddress, Action action);
 
-    Status programIpRewriteExclusion(Node node, Long dpid, String segmentationId,
+    Status programIpRewriteExclusion(Long dpid, String segmentationId,
                                      String excludedCidr, Action action);
 
 }