078753f1a21d69c596ad2917887c4dec1ea99279
[portal/ric-dashboard.git] / webapp-frontend / src / app / interfaces / anr-xapp.types.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 // Models of data used by the ANR xApp
22
23 export interface ANRGgNodeBTable {
24   gNodeBIds: Array<string>;
25 }
26
27 export interface ANRNeighborCellRelationTable {
28   ncrtRelations: Array<ANRNeighborCellRelation>;
29 }
30
31 export interface ANRNeighborCellRelation {
32   servingCellNrcgi: string;
33   neighborCellNrpci: string;
34   neighborCellNrcgi: string;
35   flagNoHo: boolean;
36   flagNoXn: boolean;
37   flagNoRemove: boolean;
38 }
39
40 export interface ANRNeighborCellRelationMod {
41   servingCellNrcgi: string;
42   neighborCellNrpci: string;
43   neighborCellNrcgi: string;
44   flagNoHo: boolean;
45   flagNoXn: boolean;
46   flagNoRemove: boolean;
47 }