Squashed commit of the following:
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / OutboundNatProvider.java
index e278a025b5c3b7b9b2f9469fd376fae82b86aaed..3f8a732440cde56bfd0d302d262c04ceae92a52f 100644 (file)
 
 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;
 
 /**
  *  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);
 
 }