Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

List<Map<String, String>> productCodes = (List<Map<String, String>>) source.

get(
"productCodesSummary.productCodes");
Map<String, Object> newSource = new HashMap<>();
Map<String, Object> finalSource = source;
productCodes.forEach(productCode -> {
newSource.putAll(finalSource);
newSource.put("productCodesSummary.productCodes", productCode);
});
source = newSource;

You might also like