for(Map.Entry entry : cacheKeyMapList.entrySet()){
String mapKey = entry.getKey();
Object mapValue = entry.getValue();
Map map =new HashMap<>();
map.put("type",type);
map.put("cacheName",cacheName);
map.put("cacheKey",mapKey);
map.put("cacheKeyValue",mapValue.toString());
cacheKeyList.add(map);
}