Merge "Removed the duplicate dependency"
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / policyagentapi / PolicyAgentApi.java
index 41f3c12..144a77a 100644 (file)
@@ -19,6 +19,8 @@
  */
 package org.oransc.ric.portal.dashboard.policyagentapi;
 
+import java.util.Collection;
+
 import org.oransc.ric.portal.dashboard.model.PolicyInstances;
 import org.oransc.ric.portal.dashboard.model.PolicyTypes;
 import org.springframework.web.client.RestClientException;
@@ -31,7 +33,11 @@ public interface PolicyAgentApi {
 
     public String getPolicyInstance(String id) throws RestClientException;
 
-    public void putPolicy(String policyTypeIdString, String policyInstanceId, String json) throws RestClientException;
+    public void putPolicy(String policyTypeIdString, String policyInstanceId, String json, String ric)
+            throws RestClientException;
 
     public void deletePolicy(String policyInstanceId) throws RestClientException;
+
+    public Collection<String> getRicsSupportingType(String typeName);
+
 }