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=25144cd1270f559286c95c39095889ce9be871ae;hb=a2ad32a98e7a3f32214d3ecd7ca9730e3602d11f;hp=144a77a2827248bed5842328ed5430e151656bc4;hpb=766e6af8d8ddf946ad5cb45a560b040e4857065e;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 144a77a2..25144cd1 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 @@ -2,14 +2,14 @@ * ========================LICENSE_START================================= * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property + * Copyright (C) 2019 Nordix Foundation * %% * 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. @@ -19,25 +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.web.client.RestClientException; +import org.springframework.http.ResponseEntity; public interface PolicyAgentApi { - public PolicyTypes getAllPolicyTypes() throws RestClientException; + public ResponseEntity getAllPolicyTypes(); - public PolicyInstances getPolicyInstancesForType(String type); + public ResponseEntity getPolicyInstancesForType(String type); - public String getPolicyInstance(String id) throws RestClientException; + public ResponseEntity getPolicyInstance(String id); - public void 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 Collection getRicsSupportingType(String typeName); + public ResponseEntity getRicsSupportingType(String typeName); }