diff options
Diffstat (limited to 'vid-webpack-master/src/app/shared/services/aaiService')
-rw-r--r-- | vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts | 39 |
1 files changed, 0 insertions, 39 deletions
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<LcpRegion[]> => { - // 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<Tenant[]> => { - // 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() + ")"; } |