diff options
author | Huabing Zhao <zhaohuabing@gmail.com> | 2019-03-28 13:29:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-28 13:29:26 +0000 |
commit | 7d92c5eb4e83a4967afdd9e0fdb955dde7075510 (patch) | |
tree | 2fc71d2922af21e27175d9e65a109aa55f589d56 /usecaseui-portal/src/app/myhttp.service.ts | |
parent | 85ff13a2ae3243f250ef0d6fa0407e4d11e9adeb (diff) | |
parent | ed711ae3ce17c0d19f2ab7e999d4966a96dde516 (diff) |
Merge "Add dropdown to select NFVO"
Diffstat (limited to 'usecaseui-portal/src/app/myhttp.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/myhttp.service.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index 753c05f6..199c99e7 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -26,6 +26,7 @@ export class MyhttpService { url = { listSortMasters:this.baseUrl+"/listSortMasters", customers: this.baseUrl + "/uui-lcm/customers", + orchestrators: this.baseUrl + "/uui-lcm/orchestrators", serviceType: this.baseUrl + "/uui-lcm/customers/" + "*_*" + "/service-subscriptions", servicesTableData: this.baseUrl + '/uui-lcm/service-instances', serviceTemplates: this.baseUrl + "/uui-lcm/service-templates", @@ -67,6 +68,11 @@ export class MyhttpService { return this.http.get<any>(this.url.customers); } + // Get all Orchestrators + getAllOrchestrators() { + return this.http.get<any>(this.url.orchestrators); + } + // Get relevant serviceType getServiceTypes(customer) { let url = this.url.serviceType.replace("*_*", customer.id); |