809a8814ba2d8489fff8eba36ef06eea48ec3448
[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.ArrayList;
24 import java.util.List;
25
26 public class RainyDayParams {
27         private String serviceType;
28         private String vnfType;
29         private String bbid;
30         private String workstep;
31         private ArrayList<Object> treatmentTableChoices;
32         private List<String> errorcode;
33         private List<String> treatment;
34
35         /**
36          * @return the serviceType
37          */
38         public String getServiceType() {
39                 return serviceType;
40         }
41         /**
42          * @param serviceType the serviceType to set
43          */
44         public void setServiceType(String serviceType) {
45                 this.serviceType = serviceType;
46         }
47         /**
48          * @return the vnfType
49          */
50         public String getVnfType() {
51                 return vnfType;
52         }
53         /**
54          * @param vnfType the vnfType to set
55          */
56         public void setVnfType(String vnfType) {
57                 this.vnfType = vnfType;
58         }
59         /**
60          * @return the workstep
61          */
62         public String getWorkstep() {
63                 return workstep;
64         }
65         /**
66          * @param workstep the workstep to set
67          */
68         public void setWorkstep(String workstep) {
69                 this.workstep = workstep;
70         }
71         /**
72          * @return the bbid
73          */
74         public String getBbid() {
75                 return bbid;
76         }
77         /**
78          * @param bbid the bbid to set
79          */
80         public void setBbid(String bbid) {
81                 this.bbid = bbid;
82         }
83         /**
84          * @return the treatmentTableChoices
85          */
86         public ArrayList<Object> getTreatmentTableChoices() {
87                 return treatmentTableChoices;
88         }
89         /**
90          * @param treatmentTableChoices the treatmentTableChoices to set
91          */
92         public void setTreatmentTableChoices(ArrayList<Object> treatmentTableChoices) {
93                 this.treatmentTableChoices = treatmentTableChoices;
94         }
95         /**
96          * @return the errorcode
97          */
98         public List<String> getErrorcode() {
99                 return errorcode;
100         }
101         /**
102          * @param errorcode the errorcode to set
103          */
104         public void setErrorcode(List<String> errorcode) {
105                 this.errorcode = errorcode;
106         }
107         /**
108          * @return the treatment
109          */
110         public List<String> getTreatment() {
111                 return treatment;
112         }
113         /**
114          * @param treatment the treatment to set
115          */
116         public void setTreatment(List<String> treatment) {
117                 this.treatment = treatment;
118         }
119         
120 }