X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fpolicyagentapi%2FPolicyAgentApi.java;h=6b7fdd243838d3e22bf574563742d2fecaf333c3;hb=refs%2Fchanges%2F49%2F2449%2F2;hp=4a26563afe9b5f5cd875e902044cadf42e3be26c;hpb=592ce20ec359928373de2e7f06214c8f8ad73c20;p=nonrtric.git diff --git a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/policyagentapi/PolicyAgentApi.java b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/policyagentapi/PolicyAgentApi.java index 4a26563a..6b7fdd24 100644 --- a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/policyagentapi/PolicyAgentApi.java +++ b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/policyagentapi/PolicyAgentApi.java @@ -19,26 +19,21 @@ */ 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 getAllPolicyTypes() throws RestClientException; + public ResponseEntity getAllPolicyTypes(); - public ResponseEntity getPolicyInstancesForType(String type); + public ResponseEntity getPolicyInstancesForType(String type); - public ResponseEntity getPolicyInstance(String id) throws RestClientException; + public ResponseEntity getPolicyInstance(String id); - public ResponseEntity putPolicy(String policyTypeIdString, String policyInstanceId, String json, String ric) - throws RestClientException; + public ResponseEntity putPolicy(String policyTypeIdString, String policyInstanceId, Object json, + String ric); - public void deletePolicy(String policyInstanceId) throws RestClientException; + public ResponseEntity deletePolicy(String policyInstanceId); - public ResponseEntity> getRicsSupportingType(String typeName); + public ResponseEntity getRicsSupportingType(String typeName); }