Revise controllers to use ResponseEntity
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / SuccessTransport.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 /**
23  * Trivial POJO used to transport scalar data like integer or string wrapped in
24  * a JSON structure.
25  */
26 public class SuccessTransport implements IDashboardResponse {
27
28         // Status is redundant :/
29         private int status;
30         private Object data;
31
32         /**
33          * Builds an empty object
34          */
35         public SuccessTransport() {
36                 // no-arg constructor
37         }
38
39         /**
40          * Builds an object with the specified values.
41          * 
42          * @param status
43          *                   Status code
44          * @param data
45          *                   Data to transport
46          */
47         public SuccessTransport(int status, Object data) {
48                 this.status = status;
49                 this.data = data;
50         }
51
52         public int getStatus() {
53                 return status;
54         }
55
56         public void setStatus(int status) {
57                 this.status = status;
58         }
59
60         public Object getData() {
61                 return data;
62         }
63
64         public void setData(Object data) {
65                 this.data = data;
66         }
67
68         @Override
69         public String toString() {
70                 return this.getClass().getSimpleName() + "[status=" + getStatus() + ", data=" + getData() + "]";
71         }
72
73 }