b88521f8132bb4b064d7d4b31879bcefffdcc432
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / tasksbeans / TaskList.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.so.apihandlerinfra.tasksbeans;
22
23 import java.util.List;
24
25 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
26
27 @JsonSerialize(include=JsonSerialize.Inclusion.NON_DEFAULT)
28 public class TaskList {    
29     protected String taskId;   
30     protected String type;   
31     protected String nfRole;   
32     protected String subscriptionServiceType;   
33     protected String originalRequestId;   
34     protected String originalRequestorId;    
35     protected String errorSource;   
36     protected String errorCode;   
37     protected String errorMessage;    
38     protected String buildingBlockName;   
39     protected String buildingBlockStep;    
40     protected List<String> validResponses;
41
42     /**
43      * Gets the value of the taskId property.
44      * 
45      * @return
46      *     possible object is
47      *     {@link String }
48      *     
49      */
50     public String getTaskId() {
51         return taskId;
52     }
53
54     /**
55      * Sets the value of the taskId property.
56      * 
57      * @param value
58      *     allowed object is
59      *     {@link String }
60      *     
61      */
62     public void setTaskId(String value) {
63         this.taskId = value;
64     }
65
66     /**
67      * Gets the value of the type property.
68      * 
69      * @return
70      *     possible object is
71      *     {@link String }
72      *     
73      */
74     public String getType() {
75         return type;
76     }
77
78     /**
79      * Sets the value of the type property.
80      * 
81      * @param value
82      *     allowed object is
83      *     {@link String }
84      *     
85      */
86     public void setType(String value) {
87         this.type = value;
88     }
89
90     /**
91      * Gets the value of the nfRole property.
92      * 
93      * @return
94      *     possible object is
95      *     {@link String }
96      *     
97      */
98     public String getNfRole() {
99         return nfRole;
100     }
101
102     /**
103      * Sets the value of the nfRole property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link String }
108      *     
109      */
110     public void setNfRole(String value) {
111         this.nfRole = value;
112     }
113
114     /**
115      * Gets the value of the subscriptionServiceType property.
116      * 
117      * @return
118      *     possible object is
119      *     {@link String }
120      *     
121      */
122     public String getSubscriptionServiceType() {
123         return subscriptionServiceType;
124     }
125
126     /**
127      * Sets the value of the subscriptionServiceType property.
128      * 
129      * @param value
130      *     allowed object is
131      *     {@link String }
132      *     
133      */
134     public void setSubscriptionServiceType(String value) {
135         this.subscriptionServiceType = value;
136     }
137
138     /**
139      * Gets the value of the originalRequestId property.
140      * 
141      * @return
142      *     possible object is
143      *     {@link String }
144      *     
145      */
146     public String getOriginalRequestId() {
147         return originalRequestId;
148     }
149
150     /**
151      * Sets the value of the originalRequestId property.
152      * 
153      * @param value
154      *     allowed object is
155      *     {@link String }
156      *     
157      */
158     public void setOriginalRequestId(String value) {
159         this.originalRequestId = value;
160     }
161
162     /**
163      * Gets the value of the originalRequestorId property.
164      * 
165      * @return
166      *     possible object is
167      *     {@link String }
168      *     
169      */
170     public String getOriginalRequestorId() {
171         return originalRequestorId;
172     }
173
174     /**
175      * Sets the value of the originalRequestorId property.
176      * 
177      * @param value
178      *     allowed object is
179      *     {@link String }
180      *     
181      */
182     public void setOriginalRequestorId(String value) {
183         this.originalRequestorId = value;
184     }
185
186     /**
187      * Gets the value of the errorSource property.
188      * 
189      * @return
190      *     possible object is
191      *     {@link String }
192      *     
193      */
194     public String getErrorSource() {
195         return errorSource;
196     }
197
198     /**
199      * Sets the value of the errorSource property.
200      * 
201      * @param value
202      *     allowed object is
203      *     {@link String }
204      *     
205      */
206     public void setErrorSource(String value) {
207         this.errorSource = value;
208     }
209
210     /**
211      * Gets the value of the errorCode property.
212      * 
213      * @return
214      *     possible object is
215      *     {@link String }
216      *     
217      */
218     public String getErrorCode() {
219         return errorCode;
220     }
221
222     /**
223      * Sets the value of the errorCode property.
224      * 
225      * @param value
226      *     allowed object is
227      *     {@link String }
228      *     
229      */
230     public void setErrorCode(String value) {
231         this.errorCode = value;
232     }
233
234     /**
235      * Gets the value of the errorMessage property.
236      * 
237      * @return
238      *     possible object is
239      *     {@link String }
240      *     
241      */
242     public String getErrorMessage() {
243         return errorMessage;
244     }
245
246     /**
247      * Sets the value of the errorMessage property.
248      * 
249      * @param value
250      *     allowed object is
251      *     {@link String }
252      *     
253      */
254     public void setErrorMessage(String value) {
255         this.errorMessage = value;
256     }
257
258     /**
259      * Gets the value of the buildingBlockName property.
260      * 
261      * @return
262      *     possible object is
263      *     {@link String }
264      *     
265      */
266     public String getBuildingBlockName() {
267         return buildingBlockName;
268     }
269
270     /**
271      * Sets the value of the buildingBlockName property.
272      * 
273      * @param value
274      *     allowed object is
275      *     {@link String }
276      *     
277      */
278     public void setBuildingBlockName(String value) {
279         this.buildingBlockName = value;
280     }
281
282     /**
283      * Gets the value of the buildingBlockStep property.
284      * 
285      * @return
286      *     possible object is
287      *     {@link String }
288      *     
289      */
290     public String getBuildingBlockStep() {
291         return buildingBlockStep;
292     }
293
294     /**
295      * Sets the value of the buildingBlockStep property.
296      * 
297      * @param value
298      *     allowed object is
299      *     {@link String }
300      *     
301      */
302     public void setBuildingBlockStep(String value) {
303         this.buildingBlockStep = value;
304     }
305
306     /**
307      * Gets the value of the validResponses property.
308      * 
309      * @return
310      *     possible object is
311      *     {@link ValidResponses }
312      *     
313      */
314     public List<String> getValidResponses() {
315         return validResponses;
316     }
317
318     /**
319      * Sets the value of the validResponses property.
320      * 
321      * @param value
322      *     allowed object is
323      *     {@link ValidResponses }
324      *     
325      */
326     public void setValidResponses(List<String> value) {
327         this.validResponses = value;
328     }
329
330
331     
332
333 }