NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / SdncReports / SdncReportsDao / src / main / java / com / onap / sdnc / reports / model / Output.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SDNC-FEATURES
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 com.onap.sdnc.reports.model;
21
22 public class Output {
23                 
24                 private String status;
25
26             private String testresult;
27
28             private String hostname;
29
30             private String ipaddress;
31             
32             private String statistics;
33             
34             private String avgTime;
35
36             private String reason;
37             
38             public String getStatus ()
39             {
40                 return status;
41             }
42
43             public String getStatistics() {
44                         return statistics;
45                 }
46
47                 public void setStatistics(String statistics) {
48                         this.statistics = statistics;
49                 }
50
51                 public void setStatus (String status)
52             {
53                 this.status = status;
54             }
55
56             public String getTestresult ()
57             {
58                 return testresult;
59             }
60
61             public void setTestresult (String testresult)
62             {
63                 this.testresult = testresult;
64             }
65
66             public String getHostname ()
67             {
68                 return hostname;
69             }
70
71             public void setHostname (String hostname)
72             {
73                 this.hostname = hostname;
74             }
75
76             public String getIpaddress ()
77             {
78                 return ipaddress;
79             }
80
81             public void setIpaddress (String ipaddress)
82             {
83                 this.ipaddress = ipaddress;
84             }
85
86                 public String getAvgTime() {
87                         return avgTime;
88                 }
89
90                 public void setAvgTime(String avgTime) {
91                         this.avgTime = avgTime;
92                 }
93
94                 public String getReason() {
95                         return reason;
96                 }
97
98                 public void setReason(String reason) {
99                         this.reason = reason;
100                 }
101 }