From 29187fc161058afd00ba38917ed3d62ed41f1d4c Mon Sep 17 00:00:00 2001 From: Einat Vinouze Date: Wed, 25 Mar 2020 14:00:10 +0200 Subject: Revert "VNF's LCP regions found by Line-of-business (and owning-entity)" This reverts commit e2a7abb45b953d405fc5aa1917f74e2da9f188c0. Issue-ID: VID-788 Change-Id: I72fb7ab9d19df9157c25f635188cb3d0b1fda2cb Signed-off-by: Einat Vinouze --- .../app/shared/services/aaiService/aai.service.ts | 39 ---------------------- 1 file changed, 39 deletions(-) (limited to 'vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts') diff --git a/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts b/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts index 603ba814d..adb7017be 100644 --- a/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts +++ b/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts @@ -228,45 +228,6 @@ export class AaiService { cloudRegionId+AaiService.formatCloudOwnerTrailer(cloudOwner) : cloudRegionId; }; - - - - - getLcpRegionsByOwningEntityAndLineOfBusiness = (owningEntityName, lineOfBusinessName): Observable => { - // let pathQuery: string = Constants.Path.AAI_GET_LCP_REGIONS_BY____ - // + "?" - // + "owningEntityName=" + owningEntityName - // + "lineOfBusinessName=" + lineOfBusinessName; - - return of([ - new LcpRegion("foo-id", "foo-name", true, "foo-cloud-owner"), - new LcpRegion("foo2-id", "foo2-name", true, "foo2-cloud-owner"), - ]); - }; - - - getTenantsByCloudOwnerAndCloudRegionId = (cloudOwner, cloudRegionId): Observable => { - // let pathQuery: string = Constants.Path.AAI_GET_TENANTS_BY____ - // + "?" - // + "cloudOwner=" + cloudOwner - // + "&cloudRegionId=" + cloudRegionId; - - return of([ - new Tenant({ - tenantID: "tenantID", tenantName: "tenantName", - cloudOwner: "cloudOwner", ['is-permitted']: true, - }), - new Tenant({ - tenantID: "tenant2ID", tenantName: "tenant2Name", - cloudOwner: "cloudOwner", ['is-permitted']: true, - }), - ]) - }; - - - - - public static formatCloudOwnerTrailer(cloudOwner: string):string { return " ("+ cloudOwner.trim().toLowerCase().replace(/^[^-]*-/, "").toUpperCase() + ")"; } -- cgit 1.2.3-korg