aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java')
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java b/src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java
index b88cb5a..c7baa25 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/model/NeighborListInUse.java
@@ -29,6 +29,9 @@ public class NeighborListInUse {
@JsonProperty("LTENeighborListInUseLTECell")
private List<LteNeighborListInUseLteCell> lteNeighborListInUseLteCell;
+ @JsonProperty("LTECell")
+ private List<LteCell> lteCell;
+
@JsonProperty("LTECellNumberOfEntries")
private String lteCellNumberOfEntries;
@@ -39,13 +42,14 @@ public class NeighborListInUse {
/**
* Parameterized Constructor.
*/
-
- public NeighborListInUse(List<LteNeighborListInUseLteCell> lteNeighborListInUseLteCell,
+ public NeighborListInUse(List<LteNeighborListInUseLteCell> lteNeighborListInUseLteCell, List<LteCell> lteCell,
String lteCellNumberOfEntries) {
super();
this.lteNeighborListInUseLteCell = lteNeighborListInUseLteCell;
+ this.lteCell = lteCell;
this.lteCellNumberOfEntries = lteCellNumberOfEntries;
}
+
public List<LteNeighborListInUseLteCell> getLteNeighborListInUseLteCell() {
return lteNeighborListInUseLteCell;