HwVTEP support for interfacemanager
[vpnservice.git] / interfacemgr / interfacemgr-impl / src / main / java / org / opendaylight / vpnservice / interfacemgr / pmcounters / CounterForOFPortPacketSentMBean.java
diff --git a/interfacemgr/interfacemgr-impl/src/main/java/org/opendaylight/vpnservice/interfacemgr/pmcounters/CounterForOFPortPacketSentMBean.java b/interfacemgr/interfacemgr-impl/src/main/java/org/opendaylight/vpnservice/interfacemgr/pmcounters/CounterForOFPortPacketSentMBean.java
new file mode 100644 (file)
index 0000000..9610324
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.vpnservice.interfacemgr.pmcounters;
+
+import java.util.Map;
+
+public interface CounterForOFPortPacketSentMBean {
+    //-----------
+    // operations
+    //-----------
+    public void setCounterDetails(Map<String, Integer> map);
+    public Map<String, Integer> getCounterDetails();
+    //-----------
+    // attributes
+    //-----------
+    public void invokePMManagedObjects(Map<String, Integer> map);
+    public Map<String, String> retrieveCounterMap();
+}
\ No newline at end of file