fbc7bbcb71386afcccf26ebf1d71bdc38cb6a35a
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / AppTransport.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
21 package org.oransc.ric.portal.dashboard.model;
22
23 /**
24  * Trivial model to transport available application from the App manager. I
25  * expect that system will soon add additional attributes. This allows coding to
26  * a structure rather than a scalar.
27  */
28 public class AppTransport implements IDashboardResponse {
29
30         private String name;
31         private String version;
32
33         /**
34          * Builds an empty object.
35          */
36         public AppTransport() {
37                 // no-arg constructor
38         }
39
40         /**
41          * Builds an object with the specified value.
42          * 
43          * @param s
44          *              value to transport.
45          */
46         public AppTransport(String s) {
47                 this.name = s;
48         }
49
50         public String getName() {
51                 return name;
52         }
53
54         public void setName(String s) {
55                 this.name = s;
56         }
57
58         public String getVersion() {
59                 return version;
60         }
61
62         public void setVersion(String version) {
63                 this.version = version;
64         }
65
66 }