From 067fe18168fae8b5cf5ac211dcf1f52f476e8bb7 Mon Sep 17 00:00:00 2001 From: decheng zhang Date: Wed, 6 Oct 2021 21:07:43 -0400 Subject: Display CCVPN network topology and tunnel installation. Issue-ID: REQ-1103 Signed-off-by: decheng zhang Change-Id: Ia8ad763ef8cdd48238c1398bd6680cc8ea2d14d6 Signed-off-by: decheng zhang --- usecaseui-portal/src/app/core/services/appEvent.ts | 23 -------------- .../src/app/core/services/appEventType.ts | 4 --- .../src/app/core/services/eventQueue.service.ts | 36 ---------------------- .../core/services/networkHttpservice.service.ts | 8 ++++- 4 files changed, 7 insertions(+), 64 deletions(-) delete mode 100644 usecaseui-portal/src/app/core/services/appEvent.ts delete mode 100644 usecaseui-portal/src/app/core/services/appEventType.ts delete mode 100644 usecaseui-portal/src/app/core/services/eventQueue.service.ts (limited to 'usecaseui-portal/src/app/core') diff --git a/usecaseui-portal/src/app/core/services/appEvent.ts b/usecaseui-portal/src/app/core/services/appEvent.ts deleted file mode 100644 index 775eced9..00000000 --- a/usecaseui-portal/src/app/core/services/appEvent.ts +++ /dev/null @@ -1,23 +0,0 @@ -/* - Copyright (C) 2021 Huawei Canada, Inc. and others. 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 - - 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. -*/ -import {AppEventType} from "@src/app/core/services/appEventType"; - -export class AppEvent { - constructor( - public type: AppEventType, - public payload: T, - ) {} -} \ No newline at end of file diff --git a/usecaseui-portal/src/app/core/services/appEventType.ts b/usecaseui-portal/src/app/core/services/appEventType.ts deleted file mode 100644 index e5369a8c..00000000 --- a/usecaseui-portal/src/app/core/services/appEventType.ts +++ /dev/null @@ -1,4 +0,0 @@ -export enum AppEventType { - GenericEvent = 'GENERIC_EVENT', - UserNodeDrag = 'USER_NODE_DRAG' -} \ No newline at end of file diff --git a/usecaseui-portal/src/app/core/services/eventQueue.service.ts b/usecaseui-portal/src/app/core/services/eventQueue.service.ts deleted file mode 100644 index e4c32c38..00000000 --- a/usecaseui-portal/src/app/core/services/eventQueue.service.ts +++ /dev/null @@ -1,36 +0,0 @@ -/* - Copyright (C) 2021 Huawei Canada, Inc. and others. 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 - - 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. -*/ - -import { Injectable } from '@angular/core'; -import {Observable, Subject} from "rxjs/Rx"; -import {AppEvent} from "@src/app/core/services/appEvent"; -import {AppEventType} from "@src/app/core/services/appEventType"; -import {filter} from "rxjs/operators"; - -@Injectable() -export class EventQueueService { - - private eventBroker = new Subject>(); - - on(eventType: AppEventType): Observable> { - return this.eventBroker.pipe(filter(event => event.type === eventType)); - } - - dispatch(event: AppEvent): void { - this.eventBroker.next(event); - } - -} \ No newline at end of file diff --git a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts index 0959f564..0e16966a 100644 --- a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts +++ b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts @@ -1,5 +1,6 @@ /* Copyright (C) 2019 CMCC, Inc. and others. All rights reserved. + Copyright (C) 2022 Huawei Canada Limited. 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. @@ -40,7 +41,9 @@ export class networkHttpservice { "createCloudLink": this.baseUrl+"/uui-sotn/createLink/", "createCloudUrl": this.baseUrl+"/uui-sotn/createHostUrl/", "deleteLink": this.baseUrl+"/uui-sotn/deleteLink/", - "getConnectivities": this.baseUrl+"/uui-sotn/getConnectivityInfo", + "getConnectivities": this.baseUrl+"/uui-sotn/getConnectivities", + "getNetworkRoutes": this.baseUrl + "/uui-sotn/getNetworkRoutes", + }; @@ -86,6 +89,9 @@ export class networkHttpservice { getConnectivities(){ return this.http.get(this.url["getConnectivities"]); } + getNetworkRoutes(){ + return this.http.get(this.url["getNetworkRoutes"]); + } //Create an external cloud newwork interface createNetwrok(paramsObj) { -- cgit 1.2.3-korg