summaryrefslogtreecommitdiffstats
path: root/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/RAN.java
blob: e6d72878222d270738c497f4b7696ee422be0f82 (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
package org.onap.ranapp.kafka.model.appmodels;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"Common",
"NeighborListInUse"
})
@Generated("jsonschema2pojo")
public class RAN {
@JsonProperty("Common")
private Common common;
@JsonProperty("Common")
public Common getCommon() {
return common;
}
@JsonProperty("Common")
public void setCommon(Common common) {
this.common = common;
}
@JsonProperty("NeighborListInUse")
private NeighborListInUse neighborListInUse;
@JsonProperty("NeighborListInUse")
public NeighborListInUse getNeighborListInUse() {
return neighborListInUse;
}
@JsonProperty("NeighborListInUse")
public void setNeighborListInUse(NeighborListInUse neighborListInUse) {
this.neighborListInUse = neighborListInUse;
}
@Override
public String toString() {
 return "RAN [common=" + common + ", neighborListInUse=" + neighborListInUse +
    "]";
}
}