Update deploymentParameters
[clamp.git] / src / main / java / org / onap / clamp / clds / model / dcae / DcaeInventoryCache.java
index b383c18..558102c 100644 (file)
@@ -38,6 +38,11 @@ public class DcaeInventoryCache {
 
     private Map<String, Set<DcaeInventoryResponse>> blueprintsMap = new ConcurrentHashMap<>();
 
+    /**
+     * Add Dcae inventory response.
+     * 
+     * @param inventoryResponse the Dcae inventory response
+     */
     public void addDcaeInventoryResponse(DcaeInventoryResponse inventoryResponse) {
         Set<DcaeInventoryResponse> responsesSet = blueprintsMap.get(inventoryResponse.getAsdcServiceId());
         if (responsesSet == null) {