aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
diff options
context:
space:
mode:
authorNiranjana <niranjana.y60@wipro.com>2021-03-22 11:39:08 +0000
committerNiranjana <niranjana.y60@wipro.com>2021-03-24 11:31:03 +0000
commit9764b6bb545a8edd4979c481627c38c1892f207e (patch)
treec6b6133144fa7812710f76ced95bbcb243bb9446 /ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
parent43e39ceab8e35a0a54ae72252b46491f362a0749 (diff)
Update schema and format java files
Issue-ID: INT-1892 Signed-off-by: Niranjana <niranjana.y60@wipro.com> Change-Id: Ib35c35cf7ac7a858311618e741c9327d7630aed6
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() {
+
}
}
-