Adding Copyright to all Files
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / consumer / src / main / java / org / onap / ccsdk / features / sdnr / northbound / oofpcipoc / handlenotif / pojos / LTE.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=======================================================
19  *
20  */
21
22 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
23
24 import com.fasterxml.jackson.annotation.JsonInclude;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
27
28 @JsonInclude(JsonInclude.Include.NON_NULL)
29 @JsonPropertyOrder({
30     "RAN"
31 })
32 public class LTE {
33
34     @JsonProperty("RAN")
35     private RAN rAN;
36
37     /**
38      * No args constructor for use in serialization
39      *
40      */
41     public LTE() {
42     }
43
44     /**
45      *
46      * @param rAN
47      */
48     public LTE(RAN rAN) {
49         super();
50         this.rAN = rAN;
51     }
52
53     @JsonProperty("RAN")
54     public RAN getRAN() {
55         return rAN;
56     }
57
58     @JsonProperty("RAN")
59     public void setRAN(RAN rAN) {
60         this.rAN = rAN;
61     }
62
63         @Override
64         public String toString() {
65                 return "LTE [rAN=" + rAN + "]";
66         }
67
68 }