Drop Nokia from file header copyright line
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / RanDetailsTransport.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 package org.oransc.ric.portal.dashboard.model;
21
22 import org.oransc.ric.e2mgr.client.model.GetNodebResponse;
23 import org.oransc.ric.e2mgr.client.model.NodebIdentity;
24
25 public class RanDetailsTransport {
26
27         private NodebIdentity nodebIdentity;
28         private GetNodebResponse nodebStatus;
29
30         public RanDetailsTransport() {
31         }
32
33         public RanDetailsTransport(NodebIdentity nodebIdentity, GetNodebResponse nodebResponse) {
34                 this.nodebIdentity = nodebIdentity;
35                 this.nodebStatus = nodebResponse;
36         }
37
38         public NodebIdentity getNodebIdentity() {
39                 return nodebIdentity;
40         }
41
42         public void setNodebIdentity(NodebIdentity nodebIdentity) {
43                 this.nodebIdentity = nodebIdentity;
44         }
45
46         public GetNodebResponse getNodebStatus() {
47                 return nodebStatus;
48         }
49
50         public void setNodebStatus(GetNodebResponse nodebStatus) {
51                 this.nodebStatus = nodebStatus;
52         }
53
54         public RanDetailsTransport nodebIdentity(NodebIdentity n) {
55                 this.nodebIdentity = n;
56                 return this;
57         }
58
59         public RanDetailsTransport nodebStatus(GetNodebResponse s) {
60                 this.nodebStatus = s;
61                 return this;
62         }
63
64 }