Fixed the Sonar technical debt.
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / RainyDayParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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.onap.policy.rest.adapter;
22
23 import java.util.List;
24
25 public class RainyDayParams {
26         private String serviceType;
27         private String vnfType;
28         private String bbid;
29         private String workstep;
30         private List<Object> treatmentTableChoices;
31         private List<String> errorcode;
32         private List<String> treatment;
33
34         /**
35          * @return the serviceType
36          */
37         public String getServiceType() {
38                 return serviceType;
39         }
40         /**
41          * @param serviceType the serviceType to set
42          */
43         public void setServiceType(String serviceType) {
44                 this.serviceType = serviceType;
45         }
46         /**
47          * @return the vnfType
48          */
49         public String getVnfType() {
50                 return vnfType;
51         }
52         /**
53          * @param vnfType the vnfType to set
54          */
55         public void setVnfType(String vnfType) {
56                 this.vnfType = vnfType;
57         }
58         /**
59          * @return the workstep
60          */
61         public String getWorkstep() {
62                 return workstep;
63         }
64         /**
65          * @param workstep the workstep to set
66          */
67         public void setWorkstep(String workstep) {
68                 this.workstep = workstep;
69         }
70         /**
71          * @return the bbid
72          */
73         public String getBbid() {
74                 return bbid;
75         }
76         /**
77          * @param bbid the bbid to set
78          */
79         public void setBbid(String bbid) {
80                 this.bbid = bbid;
81         }
82         /**
83          * @return the treatmentTableChoices
84          */
85         public List<Object> getTreatmentTableChoices() {
86                 return treatmentTableChoices;
87         }
88         /**
89          * @param treatmentTableChoices the treatmentTableChoices to set
90          */
91         public void setTreatmentTableChoices(List<Object> treatmentTableChoices) {
92                 this.treatmentTableChoices = treatmentTableChoices;
93         }
94         /**
95          * @return the errorcode
96          */
97         public List<String> getErrorcode() {
98                 return errorcode;
99         }
100         /**
101          * @param errorcode the errorcode to set
102          */
103         public void setErrorcode(List<String> errorcode) {
104                 this.errorcode = errorcode;
105         }
106         /**
107          * @return the treatment
108          */
109         public List<String> getTreatment() {
110                 return treatment;
111         }
112         /**
113          * @param treatment the treatment to set
114          */
115         public void setTreatment(List<String> treatment) {
116                 this.treatment = treatment;
117         }
118         
119 }