Added a getPolicies query REST call
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / repository / PolicyTypes.java
index ef3f42d..dc299b6 100644 (file)
@@ -26,14 +26,12 @@ import java.util.Map;
 import org.oransc.policyagent.exceptions.ServiceException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
 
 public class PolicyTypes {
     private static final Logger logger = LoggerFactory.getLogger(PolicyTypes.class);
 
     private Map<String, PolicyType> types = new HashMap<String, PolicyType>();
 
-    @Autowired
     public PolicyTypes() {
     }
 
@@ -45,8 +43,8 @@ public class PolicyTypes {
         return t;
     }
 
-    public synchronized void putType(String name, PolicyType type) {
-        types.put(name, type);
+    public synchronized void put(PolicyType type) {
+        types.put(type.name(), type);
     }
 
 }