Reorganize dashboard into subfolders
[portal/ric-dashboard.git] / dashboard / 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 details from the App
25  * manager.
26  */
27 public class AppTransport implements IDashboardResponse {
28
29         private String name;
30         private String version;
31
32         /**
33          * Builds an empty object.
34          */
35         public AppTransport() {
36                 // no-arg constructor
37         }
38
39         /**
40          * Builds an object with the specified value.
41          * 
42          * @param n
43          *              Name to transport
44          */
45         public AppTransport(String n) {
46                 this.name = n;
47         }
48
49         public String getName() {
50                 return name;
51         }
52
53         public void setName(String s) {
54                 this.name = s;
55         }
56
57         public String getVersion() {
58                 return version;
59         }
60
61         public void setVersion(String version) {
62                 this.version = version;
63         }
64
65         @Override
66         public String toString() {
67                 return this.getClass().getSimpleName() + "[name=" + getName() + ", version=" + getVersion() + "]";
68         }
69
70 }