Use Topology Node in place of Inventory Node
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / OutboundNatProvider.java
index 53337c41bdb7395c3997a455028dce2b3a68c06e..3f8a732440cde56bfd0d302d262c04ceae92a52f 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 OutboundNatProvider {
-    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);
 
 }