aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/api/PolicyService.js
diff options
context:
space:
mode:
authorS�bastien Determe <sebastien.determe@intl.att.com>2021-02-17 13:50:53 +0000
committerGerrit Code Review <gerrit@onap.org>2021-02-17 13:50:53 +0000
commitff40e4d25e810321265daadec438abd2a215951f (patch)
tree22fc4150c1babb9771fc56258005f27f5ac7d45c /ui-react/src/api/PolicyService.js
parent25f228a730563c414bce5d65cdb3210ce9eae4c6 (diff)
parenteb8e3f1dd891ac98f1bbaf35a2a0679146785236 (diff)
Merge "Add New UI component for policies list"
Diffstat (limited to 'ui-react/src/api/PolicyService.js')
-rw-r--r--ui-react/src/api/PolicyService.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/ui-react/src/api/PolicyService.js b/ui-react/src/api/PolicyService.js
new file mode 100644
index 000000000..d591b093d
--- /dev/null
+++ b/ui-react/src/api/PolicyService.js
@@ -0,0 +1,43 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP POLICY-CLAMP
+ * ================================================================================
+ * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ *
+ */
+
+export default class PolicyService {
+ static getPoliciesList() {
+ return fetch(window.location.pathname + 'restservices/clds/v2/policies/list', {
+ method: 'GET',
+ credentials: 'same-origin'
+ })
+ .then(function (response) {
+ console.debug("getPoliciesList response received: ", response.status);
+ if (response.ok) {
+ return response.json();
+ } else {
+ console.error("getPoliciesList query failed");
+ return {};
+ }
+ })
+ .catch(function (error) {
+ console.error("getPoliciesList error received", error);
+ return {};
+ });
+ }
+}