Change variable names to catalog 89/27689/2
authorilanap <ilanap@amdocs.com>
Mon, 8 Jan 2018 13:50:18 +0000 (15:50 +0200)
committerAvi Gaffa <avi.gaffa@amdocs.com>
Tue, 9 Jan 2018 12:57:22 +0000 (12:57 +0000)
Change-Id: Iaa4f2143840de47feaf25d110144cd762f6ff8ec
Issue-ID: SDC-887
Signed-off-by: ilanap <ilanap@amdocs.com>
openecomp-ui/pom.xml
openecomp-ui/src/nfvo-utils/ErrorResponseHandler.js
openecomp-ui/src/nfvo-utils/RestAPIUtil.js
openecomp-ui/src/sdc-app/common/merge/MergeEditorActionHelper.js
openecomp-ui/src/sdc-app/config/Configuration.js
openecomp-ui/src/sdc-app/config/config.json
openecomp-ui/src/sdc-app/flows/FlowsActions.js
openecomp-ui/src/sdc-app/flows/FlowsPunchOut.jsx
openecomp-ui/src/sdc-app/onboarding/OnboardingPunchOut.jsx
openecomp-ui/src/sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js
openecomp-ui/src/sdc-app/onboarding/users/UsersActionHelper.js

index 02c3ac2..311403e 100644 (file)
                         <configuration>
                             <arguments>run test-build</arguments>
                         </configuration>
-                        <phase>test</phase>
+                        <!-- for some reason does not fail on test phase -->
+                        <phase>install</phase>
                     </execution>
                 </executions>
             </plugin>
index 146d528..e7f37e3 100644 (file)
@@ -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 = {
index 0181984..bd08cbb 100644 (file)
@@ -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();
index 3885ee4..92ec60b 100644 (file)
@@ -32,8 +32,8 @@ import {DATE_FORMAT} from 'sdc-app/onboarding/OnboardingConstants.js';
 import ScreensHelper from 'sdc-app/common/helpers/ScreensHelper.js';
 
 function softwareProductCategoriesUrl() {
-       const restATTPrefix = Configuration.get('restATTPrefix');
-       return `${restATTPrefix}/v1/categories/resources/`;
+       const restCatalogPrefix = Configuration.get('restCatalogPrefix');
+       return `${restCatalogPrefix}/v1/categories/resources/`;
 }
 
 function versionUrl(itemId, versionId) {
index 3d9ab8b..8444e3f 100644 (file)
@@ -27,18 +27,18 @@ class Configuration {
                return prev;
        }
 
-       setATTApiRoot(ATTApiRoot) {
-               let restATTPrefix = ATTApiRoot,
-                       restPrefix = ATTApiRoot.replace(/\/feProxy\b[^:]*$/, '/feProxy/onboarding-api');
+       setCatalogApiRoot(CatalogApiRoot) {
+               let restCatalogPrefix = CatalogApiRoot,
+                       restPrefix = CatalogApiRoot.replace(/\/feProxy\b[^:]*$/, '/feProxy/onboarding-api');
 
                this.set('restPrefix', restPrefix);
-               this.set('restATTPrefix', restATTPrefix);
+               this.set('restCatalogPrefix', restCatalogPrefix);
        }
 
-       setATTApiHeaders(ATTApiHeaders) {
-               this.set('ATTApiHeaders', ATTApiHeaders);
+       setCatalogApiHeaders(CatalogApiHeaders) {
+               this.set('CatalogApiHeaders', CatalogApiHeaders);
 
-               let {userId: {value: UserID} = {}} = ATTApiHeaders;
+               let {userId: {value: UserID} = {}} = CatalogApiHeaders;
                this.set('UserID', UserID);
        }
 }
@@ -47,7 +47,7 @@ const configuration = new Configuration();
 
 (function setDefaultRestPrefixes(configuration) {
        configuration.set('restPrefix', configuration.get('defaultRestPrefix'));
-       configuration.set('restATTPrefix', configuration.get('defaultRestATTPrefix'));
+       configuration.set('restCatalogPrefix', configuration.get('defaultRestCatalogPrefix'));
        configuration.set('appContextPath', configuration.get('appContextPath'));
 })(configuration);
 (function setDefaultWebsocketConfig(configuration) {
index e73856e..fbfaf1d 100644 (file)
@@ -4,7 +4,7 @@
        "build": "dev",
        "appContextPath" : "/onboarding",
        "defaultRestPrefix": "/onboarding-api",
-       "defaultRestATTPrefix": "/sdc1/feProxy/rest",
+       "defaultRestCatalogPrefix": "/sdc1/feProxy/rest",
        "defaultWebsocketPort" : "8181",
        "defaultDebugWebsocketPort" : "9000",
        "defaultWebsocketPath" : "notification-api/ws/notificationHandler"
index 5a75106..61a419b 100644 (file)
@@ -20,8 +20,8 @@ import SequenceDiagramModelHelper from './SequenceDiagramModelHelper.js';
 
 
 function baseUrl(serviceId, artifactId = '') {
-       const restATTPrefix = Configuration.get('restATTPrefix');
-       return `${restATTPrefix}/v1/catalog/services/${serviceId}/artifacts/${artifactId}`;
+       const restCatalogPrefix = Configuration.get('restCatalogPrefix');
+       return `${restCatalogPrefix}/v1/catalog/services/${serviceId}/artifacts/${artifactId}`;
 }
 
 function encodeDataToBase64(dataAsString) {
index 8730034..a2a5554 100644 (file)
@@ -45,8 +45,8 @@ export default class DiagramPunchOut {
        render({options: {data, apiRoot, apiHeaders}, onEvent}, element) {
 
                if (!this.isConfigSet) {
-                       Configuration.setATTApiRoot(apiRoot);
-                       Configuration.setATTApiHeaders(apiHeaders);
+                       Configuration.setCatalogApiRoot(apiRoot);
+                       Configuration.setCatalogApiHeaders(apiHeaders);
                        this.isConfigSet = true;
                }
 
index 06c95b0..e576bb3 100644 (file)
@@ -205,8 +205,8 @@ export default class OnboardingPunchOut {
                }
 
                if (!this.isConfigSet) {
-                       Configuration.setATTApiRoot(apiRoot);
-                       Configuration.setATTApiHeaders(apiHeaders);
+                       Configuration.setCatalogApiRoot(apiRoot);
+                       Configuration.setCatalogApiHeaders(apiHeaders);
                        this.isConfigSet = true;
                }
 
index 355c823..ebd660f 100644 (file)
@@ -58,8 +58,8 @@ function baseUrl() {
        return `${restPrefix}/v1.0/vendor-software-products/`;
 }
 function softwareProductCategoriesUrl() {
-       const restATTPrefix = Configuration.get('restATTPrefix');
-       return `${restATTPrefix}/v1/categories/resources/`;
+       const restCatalogPrefix = Configuration.get('restCatalogPrefix');
+       return `${restCatalogPrefix}/v1/categories/resources/`;
 }
 
 function uploadFile(vspId, formData, version) {
index 8a9ff42..a2e92fe 100644 (file)
@@ -19,15 +19,15 @@ import Configuration from 'sdc-app/config/Configuration.js';
 import {actionTypes} from './UsersConstants.js';
 
 function getUserId() {
-       let attApiHeaders = Configuration.get('ATTApiHeaders');
-       let User = attApiHeaders && attApiHeaders.userId;
+       let catalogApiHeaders = Configuration.get('CatalogApiHeaders');
+       let User = catalogApiHeaders && catalogApiHeaders.userId;
        let userId = User && User.value ? User.value : '';
        return userId;
 }
 
 function baseUrl() {
-       const restATTPrefix = Configuration.get('restATTPrefix');
-       return `${restATTPrefix}`;
+       const restCatalogPrefix = Configuration.get('restCatalogPrefix');
+       return `${restCatalogPrefix}`;
 }