From cec131cf4b0279bd6a6d4dd31642270cebe38711 Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Tue, 26 Nov 2019 13:12:17 -0500 Subject: [PATCH] Clean up POM and release notes for Amber Remove front-end file with ANR data types (TS interfaces) Change-Id: I924884bc43df10383ebf5abe4c2a7909d9eb5437 Signed-off-by: Lott, Christopher (cl778h) --- docs/release-notes.rst | 7 ++-- pom.xml | 4 +- .../src/app/interfaces/anr-xapp.types.ts | 47 ---------------------- 3 files changed, 6 insertions(+), 52 deletions(-) delete mode 100644 webapp-frontend/src/app/interfaces/anr-xapp.types.ts diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 9ea7c754..35f6aab0 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -5,13 +5,15 @@ RIC Dashboard Release Notes =========================== -Version 1.3.0, 4 Nov 2019 -------------------------- +Version 1.3.0, 26 Nov 2019 +-------------------------- +* This is the Amber release version * Revise e2-mgr-client to use API spec in new submodule ric-plt/e2mgr; removed cached copy * Silence many Sonar complaints * Revise license statements in documentation files * Revise stats screen to drop mock load, pendulum, reporting items +* Remove ANR xApp Version 1.2.4, 24 Oct 2019 -------------------------- @@ -30,7 +32,6 @@ Version 1.2.4, 24 Oct 2019 * Repair bug that omitted slashes in CAAS-Ingress URL builder * Improve the dark mode * Show container ready count with total count -* Remove ANR xApp Version 1.2.3, 4 Oct 2019 ------------------------- diff --git a/pom.xml b/pom.xml index 1fbfa42b..8b9657b5 100644 --- a/pom.xml +++ b/pom.xml @@ -47,8 +47,8 @@ limitations under the License. a1-med-client app-mgr-client - e2-mgr-client - webapp-frontend + e2-mgr-client + webapp-frontend webapp-backend diff --git a/webapp-frontend/src/app/interfaces/anr-xapp.types.ts b/webapp-frontend/src/app/interfaces/anr-xapp.types.ts deleted file mode 100644 index 6b7db25d..00000000 --- a/webapp-frontend/src/app/interfaces/anr-xapp.types.ts +++ /dev/null @@ -1,47 +0,0 @@ -/*- - * ========================LICENSE_START================================= - * O-RAN-SC - * %% - * Copyright (C) 2019 AT&T Intellectual Property - * %% - * 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. - * ========================LICENSE_END=================================== - */ - -// Models of data used by the ANR xApp - -export interface ANRGgNodeBTable { - gNodeBIds: Array; -} - -export interface ANRNeighborCellRelationTable { - ncrtRelations: Array; -} - -export interface ANRNeighborCellRelation { - servingCellNrcgi: string; - neighborCellNrpci: string; - neighborCellNrcgi: string; - flagNoHo: boolean; - flagNoXn: boolean; - flagNoRemove: boolean; -} - -export interface ANRNeighborCellRelationMod { - servingCellNrcgi: string; - neighborCellNrpci: string; - neighborCellNrcgi: string; - flagNoHo: boolean; - flagNoXn: boolean; - flagNoRemove: boolean; -} -- 2.16.6