aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
diff options
context:
space:
mode:
authoryashwanth <gandhapu.yashwanth@wipro.com>2022-05-06 11:56:39 +0000
committeryashwanth <gandhapu.yashwanth@wipro.com>2022-05-06 12:28:50 +0000
commitcfc1f962ac684f972be0b177d531088ca3ecd0ca (patch)
treefedf8fb0c20d3098b42b9e00ee25ea9f1b6ac142 /ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
parent292aa06f9fc6a48652411087b4fc34b9ab728f2b (diff)
Modify ANR Ransim Update
Issue-ID: INT-2107 Signed-off-by: yashwanth <gandhapu.yashwanth@wipro.com> Change-Id: Ieebb957579ab09b70bff3b7beeeb148c8972b52b
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
index bc6003f..2e46cd9 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
@@ -27,7 +27,7 @@ public class NRCellDU {
private String idNRCellDU;
- private Attributes attributes;
+ private DUAttributes attributes;
public String getIdNRCellDU() {
return idNRCellDU;
@@ -37,15 +37,15 @@ public class NRCellDU {
this.idNRCellDU = idNRCellDU;
}
- public Attributes getAttributes() {
+ public DUAttributes getAttributes() {
return attributes;
}
- public void setAttributes(Attributes attributes) {
+ public void setAttributes(DUAttributes attributes) {
this.attributes = attributes;
}
- public NRCellDU(Attributes attributes) {
+ public NRCellDU(DUAttributes attributes) {
super();
this.attributes = attributes;
}