Working with OVS
[vpnservice.git] / interfacemgr / interfacemgr-api / src / main / java / org / opendaylight / vpnservice / interfacemgr / interfaces / IInterfaceManager.java
index 8ef4efdb474a82d5f24e019faf2466201d0d0ae8..64c98b9f2e189f65cdf83019fbb0aaf1014d5106 100644 (file)
@@ -15,14 +15,27 @@ import java.util.List;
 import org.opendaylight.vpnservice.mdsalutil.ActionInfo;
 import org.opendaylight.vpnservice.mdsalutil.MatchInfo;
 
+@Deprecated
 public interface IInterfaceManager {
-
+    @Deprecated
     public Long getPortForInterface(String ifName);
+
+    @Deprecated
     public BigInteger getDpnForInterface(String ifName);
+
+    @Deprecated
     public BigInteger getDpnForInterface(Interface intrf);
+
+    @Deprecated
     public String getEndpointIpForDpn(BigInteger dpnId);
+
+    @Deprecated
     public List<MatchInfo> getInterfaceIngressRule(String ifName);
+
+    @Deprecated
     public List<ActionInfo> getInterfaceEgressActions(String ifName);
+
+    @Deprecated
     public Long getPortForInterface(Interface intf);
 
 }
\ No newline at end of file