Interfacemgr: Added APIs
[vpnservice.git] / interfacemgr / interfacemgr-api / src / main / java / org / opendaylight / vpnservice / interfacemgr / interfaces / IInterfaceManager.java
index bda2d8c0c0757b9d088d5c2154b6bf543a324c49..95d1323bbb41411bcb95d3828f4c19576ca5586b 100644 (file)
@@ -1,7 +1,13 @@
 package org.opendaylight.vpnservice.interfacemgr.interfaces;
 
+import java.util.List;
+import org.opendaylight.vpnservice.mdsalutil.MatchInfo;
+
 public interface IInterfaceManager {
 
-    public void testApi();
+    public Long getPortForInterface(String ifName);
+    public long getDpnForInterface(String ifName);
+    public String getEndpointIpForDpn(long dpnId);
+    public List<MatchInfo> getInterfaceIngressRule(String ifName);
 
 }
\ No newline at end of file