Merge "Added enrichment-coordinator-service module in nonrtric"
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / MultiMap.java
index e64ea22..c2b8270 100644 (file)
@@ -27,9 +27,9 @@ import java.util.Map;
 import java.util.Vector;
 
 /**
- * Dynamic representation of all Rics in the system.
+ * A map, where each key can be bound to may values (where each value has an own
+ * ID)
  */
-
 public class MultiMap<T> {
 
     private final Map<String, Map<String, T>> map = new HashMap<>();