Merge "Added STD sim 2.0.0 tests"
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / repository / PolicyTypes.java
index 7723983..2897a50 100644 (file)
 package org.oransc.policyagent.repository;
 
 import java.util.Collection;
-import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Vector;
 
 import org.oransc.policyagent.exceptions.ServiceException;
 
 public class PolicyTypes {
-    private Map<String, PolicyType> types = new HashMap<String, PolicyType>();
-
-    public PolicyTypes() {
-    }
+    private Map<String, PolicyType> types = new HashMap<>();
 
     public synchronized PolicyType getType(String name) throws ServiceException {
         PolicyType t = types.get(name);
@@ -54,7 +51,7 @@ public class PolicyTypes {
     }
 
     public synchronized Collection<PolicyType> getAll() {
-        return Collections.unmodifiableCollection(types.values());
+        return new Vector<>(types.values());
     }
 
     public synchronized int size() {