Return response codes from policy controller
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / policyagentapi / PolicyAgentApi.java
index 4a26563..ff254d2 100644 (file)
  */
 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.http.ResponseEntity;
-import org.springframework.web.client.RestClientException;
 
 public interface PolicyAgentApi {
 
-    public ResponseEntity<PolicyTypes> getAllPolicyTypes() throws RestClientException;
+    public ResponseEntity<String> getAllPolicyTypes();
 
-    public ResponseEntity<PolicyInstances> getPolicyInstancesForType(String type);
+    public ResponseEntity<String> getPolicyInstancesForType(String type);
 
-    public ResponseEntity<String> getPolicyInstance(String id) throws RestClientException;
+    public ResponseEntity<String> getPolicyInstance(String id);
 
-    public ResponseEntity<String> putPolicy(String policyTypeIdString, String policyInstanceId, String json, String ric)
-        throws RestClientException;
+    public ResponseEntity<String> putPolicy(String policyTypeIdString, String policyInstanceId, String json,
+        String ric);
 
-    public void deletePolicy(String policyInstanceId) throws RestClientException;
+    public ResponseEntity<String> deletePolicy(String policyInstanceId);
 
-    public ResponseEntity<Collection<String>> getRicsSupportingType(String typeName);
+    public ResponseEntity<String> getRicsSupportingType(String typeName);
 
 }