diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 15:44:41 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 15:44:45 +0800 |
commit | e044dfe80bcefb9004c8b6d3156d15ac56426dad (patch) | |
tree | 71754401eb4e1bbb0945d0383dedeee28ab27ad9 /usecaseui-portal/src/app/myhttp.service.ts | |
parent | 14e41af3117a7c8c758cf887da5918356720c730 (diff) |
Fix instance instantiation for NS
Change-Id: I8979b70ca2efd8a09d37eb74233e15093a15806a
Issue-ID: USECASEUI-255
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/myhttp.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/myhttp.service.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index 6ed8f6ef..d5df7b56 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -39,7 +39,6 @@ export class MyhttpService { createService: this.baseUrl + "/uui-lcm/services", ns_createService: this.baseUrl + "/uui-lcm/createNetworkServiceInstance", ns_createService2: this.baseUrl + "/uui-lcm/instantiateNetworkServiceInstance", - inputNamesTransform: "./assets/json/configuration_files/inputNamesTranslate.json?", deleteService: this.baseUrl + "/uui-lcm/services/", ns_deleteService: this.baseUrl + "/uui-lcm/deleteNetworkServiceInstance?ns_instance_id=", ns_stopService: this.baseUrl + "/uui-lcm/terminateNetworkServiceInstance?ns_instance_id=", @@ -135,11 +134,6 @@ export class MyhttpService { return this.http.post<any>(this.url.ns_createService2 + params, requestBody); } - // Input parameter name conversion - inputNamesTransform() { - return this.http.get(this.url.inputNamesTransform); - } - // Delete interface deleteInstance(obj) { let httpOptions = { |