aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/websocket/model/NearRTRIC.java
blob: 47e1ef8ef4862dee920102e05ac4836d6fda8fae (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.onap.ransim.websocket.model;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class NearRTRIC {
    
     private String idNearRTRIC;
     
     private Attributes attributes;

     @JsonProperty("GNBDUFunction")
     private List<GNBDUFunction> gNBDUFunction;

     @JsonProperty("GNBCUUPFunction")
     private List<GNBCUUPFunction> gNBCUUPFunction;

     public String getIdNearRTRIC () {
       return idNearRTRIC;
     }
     public void setIdNearRTRIC(String idNearRTRIC) {
       this.idNearRTRIC = idNearRTRIC;
     }
     public Attributes getAttributes() {
       return attributes;
     }
     public void setAttributes(Attributes attributes) {
       this.attributes = attributes;
     }
     public List<GNBDUFunction> getgNBDUFunction() {
       return gNBDUFunction;
     }
     public void setgNBDUFunction(List<GNBDUFunction> gNBDUFunction) {
       this.gNBDUFunction = gNBDUFunction;
     }
     public List<GNBCUUPFunction> getgNBCUUPFunction() {
       return gNBCUUPFunction;
     }
     public void setgNBCUUPFunction(List<GNBCUUPFunction> gNBCUUPFunction) {
       this.gNBCUUPFunction = gNBCUUPFunction;
     }
     public NearRTRIC()
     {
   
     }
}