Return response codes from policy controller
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / policyagentapi / PolicyAgentApi.java
index 144a77a..ff254d2 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  */
 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;
+import org.springframework.http.ResponseEntity;
 
 public interface PolicyAgentApi {
 
-    public PolicyTypes getAllPolicyTypes() throws RestClientException;
+    public ResponseEntity<String> getAllPolicyTypes();
 
-    public PolicyInstances getPolicyInstancesForType(String type);
+    public ResponseEntity<String> getPolicyInstancesForType(String type);
 
-    public String getPolicyInstance(String id) throws RestClientException;
+    public ResponseEntity<String> getPolicyInstance(String id);
 
-    public void 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 Collection<String> getRicsSupportingType(String typeName);
+    public ResponseEntity<String> getRicsSupportingType(String typeName);
 
 }