f465e8605260ece25e207c7684d35e641e6103ff
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / RainyDayParams.java
1 package org.onap.policy.rest.adapter;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class RainyDayParams {
7         private String serviceType;
8         private String vnfType;
9         private String bbid;
10         private String workstep;
11         private ArrayList<Object> treatmentTableChoices;
12         private List<String> errorcode;
13         private List<String> treatment;
14
15         /**
16          * @return the serviceType
17          */
18         public String getServiceType() {
19                 return serviceType;
20         }
21         /**
22          * @param serviceType the serviceType to set
23          */
24         public void setServiceType(String serviceType) {
25                 this.serviceType = serviceType;
26         }
27         /**
28          * @return the vnfType
29          */
30         public String getVnfType() {
31                 return vnfType;
32         }
33         /**
34          * @param vnfType the vnfType to set
35          */
36         public void setVnfType(String vnfType) {
37                 this.vnfType = vnfType;
38         }
39         /**
40          * @return the workstep
41          */
42         public String getWorkstep() {
43                 return workstep;
44         }
45         /**
46          * @param workstep the workstep to set
47          */
48         public void setWorkstep(String workstep) {
49                 this.workstep = workstep;
50         }
51         /**
52          * @return the bbid
53          */
54         public String getBbid() {
55                 return bbid;
56         }
57         /**
58          * @param bbid the bbid to set
59          */
60         public void setBbid(String bbid) {
61                 this.bbid = bbid;
62         }
63         /**
64          * @return the treatmentTableChoices
65          */
66         public ArrayList<Object> getTreatmentTableChoices() {
67                 return treatmentTableChoices;
68         }
69         /**
70          * @param treatmentTableChoices the treatmentTableChoices to set
71          */
72         public void setTreatmentTableChoices(ArrayList<Object> treatmentTableChoices) {
73                 this.treatmentTableChoices = treatmentTableChoices;
74         }
75         /**
76          * @return the errorcode
77          */
78         public List<String> getErrorcode() {
79                 return errorcode;
80         }
81         /**
82          * @param errorcode the errorcode to set
83          */
84         public void setErrorcode(List<String> errorcode) {
85                 this.errorcode = errorcode;
86         }
87         /**
88          * @return the treatment
89          */
90         public List<String> getTreatment() {
91                 return treatment;
92         }
93         /**
94          * @param treatment the treatment to set
95          */
96         public void setTreatment(List<String> treatment) {
97                 this.treatment = treatment;
98         }
99         
100 }