aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
diff options
context:
space:
mode:
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.java26
1 files changed, 15 insertions, 11 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 c631c5a..bc6003f 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
@@ -19,34 +19,38 @@
*/
package org.onap.ransim.websocket.model;
+
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class NRCellDU {
private String idNRCellDU;
-
+
private Attributes attributes;
public String getIdNRCellDU() {
- return idNRCellDU;
+ return idNRCellDU;
}
+
public void setIdNRCellDU(String idNRCellDU) {
- this.idNRCellDU = idNRCellDU;
+ this.idNRCellDU = idNRCellDU;
}
+
public Attributes getAttributes() {
- return attributes;
+ return attributes;
}
+
public void setAttributes(Attributes attributes) {
- this.attributes = attributes;
+ this.attributes = attributes;
}
+
public NRCellDU(Attributes attributes) {
- super();
- this.attributes = attributes;
+ super();
+ this.attributes = attributes;
}
- public NRCellDU()
- {
-
+
+ public NRCellDU() {
+
}
}
-