Clean up POM and release notes for Amber 88/1788/1 1.3.0
authorLott, Christopher (cl778h) <cl778h@att.com>
Tue, 26 Nov 2019 18:12:17 +0000 (13:12 -0500)
committerLott, Christopher (cl778h) <cl778h@att.com>
Tue, 26 Nov 2019 18:19:22 +0000 (13:19 -0500)
Remove front-end file with ANR data types (TS interfaces)

Change-Id: I924884bc43df10383ebf5abe4c2a7909d9eb5437
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
docs/release-notes.rst
pom.xml
webapp-frontend/src/app/interfaces/anr-xapp.types.ts [deleted file]

index 9ea7c75..35f6aab 100644 (file)
@@ -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 1fbfa42..8b9657b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -47,8 +47,8 @@ limitations under the License.
        <modules>
                <module>a1-med-client</module>
                <module>app-mgr-client</module>
-    <module>e2-mgr-client</module>
-    <module>webapp-frontend</module>
+               <module>e2-mgr-client</module>
+               <module>webapp-frontend</module>
                <module>webapp-backend</module>
        </modules>
        <build>
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 (file)
index 6b7db25..0000000
+++ /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<string>;
-}
-
-export interface ANRNeighborCellRelationTable {
-  ncrtRelations: Array<ANRNeighborCellRelation>;
-}
-
-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;
-}