HwVTEP support for interfacemanager
[vpnservice.git] / interfacemgr / interfacemgr-impl / src / main / java / org / opendaylight / vpnservice / interfacemgr / pmcounters / CounterForOFPortDuration.java
diff --git a/interfacemgr/interfacemgr-impl/src/main/java/org/opendaylight/vpnservice/interfacemgr/pmcounters/CounterForOFPortDuration.java b/interfacemgr/interfacemgr-impl/src/main/java/org/opendaylight/vpnservice/interfacemgr/pmcounters/CounterForOFPortDuration.java
new file mode 100644 (file)
index 0000000..6aa5927
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * 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.HashMap;
+import java.util.Map;
+
+public class CounterForOFPortDuration implements CounterForOFPortDurationMBean{
+
+    Map<String, Integer> counterCache = new HashMap<String, Integer>();
+    public static Map counterMap = new HashMap<String,String>();
+    public void invokePMManagedObjects(Map<String, Integer> map) {
+        setCounterDetails(map);
+    }
+
+    public Map<String, Integer> getCounterDetails() {
+        return counterCache;
+    }
+
+    public synchronized void setCounterDetails(Map<String, Integer> map) {
+       counterCache = map;
+    }
+
+    public Map<String, String> retrieveCounterMap(){
+        counterMap = (HashMap) counterCache;
+        return counterMap;
+    }
+
+}
\ No newline at end of file