aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java
diff options
context:
space:
mode:
authorMicha? Jagie??o <michal.jagiello@t-mobile.pl>2022-11-25 10:47:50 +0000
committerGerrit Code Review <gerrit@onap.org>2022-11-25 10:47:50 +0000
commit418ead1a891421f087dcb667eda1c6650c85796d (patch)
tree56b8d5083ebdb277b72bf0bd1ce5f6a8fd37adf2 /ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java
parent41bbe166748510b4c5be7606ff27ee7ee64cb001 (diff)
parent5873f72ced51905fa6b5491780a4a399f0bd59b7 (diff)
Merge "ORAN Alignment - PCI updates for SON usecase"
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java
index 56ce746..34922be 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/Topology.java
@@ -30,7 +30,7 @@ public class Topology {
private String cellId;
- private List<Neighbor> neighborList;
+ private List<NRCellRelation> neighborList;
public long getPciId() {
return pciId;
@@ -48,11 +48,11 @@ public class Topology {
this.cellId = cellId;
}
- public List<Neighbor> getNeighborList() {
+ public List<NRCellRelation> getNeighborList() {
return neighborList;
}
- public void setNeighborList(List<Neighbor> neighborList) {
+ public void setNeighborList(List<NRCellRelation> neighborList) {
this.neighborList = neighborList;
}
@@ -70,7 +70,7 @@ public class Topology {
* @param cellId node id for the cel
* @param neighborList neighbor list for the cell
*/
- public Topology(String pnfName, long pciId, String cellId, List<Neighbor> neighborList) {
+ public Topology(String pnfName, long pciId, String cellId, List<NRCellRelation> neighborList) {
super();
this.pnfName = pnfName;
this.pciId = pciId;