aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NRCellDU.java
blob: 01d51e912252cf6c451abd222cfa169c97211cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
    }
    public void setIdNRCellDU(String idNRCellDU) {
      this.idNRCellDU = idNRCellDU;
    }
    public Attributes getAttributes() {
      return attributes;
    }
    public void setAttributes(Attributes attributes) {
      this.attributes = attributes;
    }
    public NRCellDU(Attributes attributes) {
      super();
      this.attributes = attributes;
    }
    public NRCellDU()
    {
        
    }
}