aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2022-05-06 06:31:38 +0000
committerGerrit Code Review <gerrit@onap.org>2022-05-06 06:31:38 +0000
commit292aa06f9fc6a48652411087b4fc34b9ab728f2b (patch)
tree1c17b1a679dd40fa8f2e5e87f6932db8e44cc038 /ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java
parentb395e82cedb969d392fd4a1a2b13cfa8cf64cce7 (diff)
parent944c707bcd818e3581acab1c100710b218fb3c51 (diff)
Merge "ORAN Alignment - initial config updates and PM data updates for SON usecase"
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java
index 11e8019..ed32bf3 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/GetNeighborList.java
@@ -25,6 +25,8 @@ import java.util.List;
public class GetNeighborList {
private String nodeId;
+ private List<NRCellCU> CellsWithNoHo;
+ private List<NRCellCU> CellsWithHo;
private List<CellDetails> cellsWithNoHo;
private List<CellDetails> cellsWithHo;
@@ -70,4 +72,19 @@ public class GetNeighborList {
this.cellsWithHo = cellsWithHo;
}
+ public List<NRCellCU> getCUCellsWithNoHo() {
+ return CellsWithNoHo;
+ }
+
+ public void setCUCellsWithNoHo(List<NRCellCU> CellsWithNoHo) {
+ this.CellsWithNoHo = CellsWithNoHo;
+ }
+
+ public List<NRCellCU> getCUCellsWithHo() {
+ return CellsWithHo;
+ }
+
+ public void setCUCellsWithHo(List<NRCellCU> CellsWithHo) {
+ this.CellsWithHo = CellsWithHo;
+ }
}