summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/nfvo-utils
diff options
context:
space:
mode:
authorilanap <ilanap@amdocs.com>2018-01-08 15:50:18 +0200
committerAvi Gaffa <avi.gaffa@amdocs.com>2018-01-09 12:57:22 +0000
commit785dc1ea36c8c333d93d9f54cae252d141319bfc (patch)
treedb9c35a871e5bf5cd6789b93d9c23a0e8f5f21d8 /openecomp-ui/src/nfvo-utils
parent7476ddebf0b34cf4ebf4a3c64ff3163bc0b06058 (diff)
Change variable names to catalog
Change-Id: Iaa4f2143840de47feaf25d110144cd762f6ff8ec Issue-ID: SDC-887 Signed-off-by: ilanap <ilanap@amdocs.com>
Diffstat (limited to 'openecomp-ui/src/nfvo-utils')
-rw-r--r--openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js16
-rw-r--r--openecomp-ui/src/nfvo-utils/RestAPIUtil.js8
2 files changed, 12 insertions, 12 deletions
diff --git a/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js b/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js
index 146d5285d9..e7f37e3768 100644
--- a/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js
+++ b/openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js
@@ -1,17 +1,17 @@
-/*
- * Copyright © 2016-2017 European Support Limited
+/*!
+ * Copyright (C) 2017 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
+ * 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.
+ * 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.
*/
import store from 'sdc-app/AppStore.js';
import React from 'react';
@@ -29,7 +29,7 @@ function showVariablesInMessage(variables, msg) {
return msg;
}
-function parseATTExceptionObject(responseJSON) {
+function parseCatalogExceptionObject(responseJSON) {
let title, msg;
if (responseJSON.requestError && responseJSON.requestError.policyException) {
title = 'Error: ' + responseJSON.requestError.policyException.messageId;
@@ -57,7 +57,7 @@ function parseATTExceptionObject(responseJSON) {
var errorResponseHandler = (error) => {
let errorData;
if (error.data) {
- errorData = parseATTExceptionObject(error.data);
+ errorData = parseCatalogExceptionObject(error.data);
}
else {
errorData = {
diff --git a/openecomp-ui/src/nfvo-utils/RestAPIUtil.js b/openecomp-ui/src/nfvo-utils/RestAPIUtil.js
index 01819844c7..bd08cbb676 100644
--- a/openecomp-ui/src/nfvo-utils/RestAPIUtil.js
+++ b/openecomp-ui/src/nfvo-utils/RestAPIUtil.js
@@ -48,10 +48,10 @@ function applySecurity(options, data) {
headers[AUTHORIZATION_HEADER] = authToken;
}
- let attApiHeaders = Configuration.get('ATTApiHeaders'),
- attUidHeader = attApiHeaders && attApiHeaders.userId;
- if (attUidHeader) {
- headers[attUidHeader.name] = attUidHeader.value;
+ let catalogApiHeaders = Configuration.get('CatalogApiHeaders'),
+ catalogUidHeader = catalogApiHeaders && catalogApiHeaders.userId;
+ if (catalogUidHeader) {
+ headers[catalogUidHeader.name] = catalogUidHeader.value;
}
headers[REQUEST_ID_HEADER] = uuid.create().toString();