ceba65fa97990d5bb230ac4e91fed83ce5c96788
[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 String description;
41     protected String timeout;
42     protected List<String> validResponses;
43
44     /**
45      * Gets the value of the taskId property.
46      * 
47      * @return
48      *     possible object is
49      *     {@link String }
50      *     
51      */
52     public String getTaskId() {
53         return taskId;
54     }
55
56     /**
57      * Sets the value of the taskId property.
58      * 
59      * @param value
60      *     allowed object is
61      *     {@link String }
62      *     
63      */
64     public void setTaskId(String value) {
65         this.taskId = value;
66     }
67
68     /**
69      * Gets the value of the type property.
70      * 
71      * @return
72      *     possible object is
73      *     {@link String }
74      *     
75      */
76     public String getType() {
77         return type;
78     }
79
80     /**
81      * Sets the value of the type property.
82      * 
83      * @param value
84      *     allowed object is
85      *     {@link String }
86      *     
87      */
88     public void setType(String value) {
89         this.type = value;
90     }
91
92     /**
93      * Gets the value of the nfRole property.
94      * 
95      * @return
96      *     possible object is
97      *     {@link String }
98      *     
99      */
100     public String getNfRole() {
101         return nfRole;
102     }
103
104     /**
105      * Sets the value of the nfRole property.
106      * 
107      * @param value
108      *     allowed object is
109      *     {@link String }
110      *     
111      */
112     public void setNfRole(String value) {
113         this.nfRole = value;
114     }
115
116     /**
117      * Gets the value of the subscriptionServiceType property.
118      * 
119      * @return
120      *     possible object is
121      *     {@link String }
122      *     
123      */
124     public String getSubscriptionServiceType() {
125         return subscriptionServiceType;
126     }
127
128     /**
129      * Sets the value of the subscriptionServiceType property.
130      * 
131      * @param value
132      *     allowed object is
133      *     {@link String }
134      *     
135      */
136     public void setSubscriptionServiceType(String value) {
137         this.subscriptionServiceType = value;
138     }
139
140     /**
141      * Gets the value of the originalRequestId property.
142      * 
143      * @return
144      *     possible object is
145      *     {@link String }
146      *     
147      */
148     public String getOriginalRequestId() {
149         return originalRequestId;
150     }
151
152     /**
153      * Sets the value of the originalRequestId property.
154      * 
155      * @param value
156      *     allowed object is
157      *     {@link String }
158      *     
159      */
160     public void setOriginalRequestId(String value) {
161         this.originalRequestId = value;
162     }
163
164     /**
165      * Gets the value of the originalRequestorId property.
166      * 
167      * @return
168      *     possible object is
169      *     {@link String }
170      *     
171      */
172     public String getOriginalRequestorId() {
173         return originalRequestorId;
174     }
175
176     /**
177      * Sets the value of the originalRequestorId property.
178      * 
179      * @param value
180      *     allowed object is
181      *     {@link String }
182      *     
183      */
184     public void setOriginalRequestorId(String value) {
185         this.originalRequestorId = value;
186     }
187
188     /**
189      * Gets the value of the errorSource property.
190      * 
191      * @return
192      *     possible object is
193      *     {@link String }
194      *     
195      */
196     public String getErrorSource() {
197         return errorSource;
198     }
199
200     /**
201      * Sets the value of the errorSource property.
202      * 
203      * @param value
204      *     allowed object is
205      *     {@link String }
206      *     
207      */
208     public void setErrorSource(String value) {
209         this.errorSource = value;
210     }
211
212     /**
213      * Gets the value of the errorCode property.
214      * 
215      * @return
216      *     possible object is
217      *     {@link String }
218      *     
219      */
220     public String getErrorCode() {
221         return errorCode;
222     }
223
224     /**
225      * Sets the value of the errorCode property.
226      * 
227      * @param value
228      *     allowed object is
229      *     {@link String }
230      *     
231      */
232     public void setErrorCode(String value) {
233         this.errorCode = value;
234     }
235
236     /**
237      * Gets the value of the errorMessage property.
238      * 
239      * @return
240      *     possible object is
241      *     {@link String }
242      *     
243      */
244     public String getErrorMessage() {
245         return errorMessage;
246     }
247
248     /**
249      * Sets the value of the errorMessage property.
250      * 
251      * @param value
252      *     allowed object is
253      *     {@link String }
254      *     
255      */
256     public void setErrorMessage(String value) {
257         this.errorMessage = value;
258     }
259
260     /**
261      * Gets the value of the buildingBlockName property.
262      * 
263      * @return
264      *     possible object is
265      *     {@link String }
266      *     
267      */
268     public String getBuildingBlockName() {
269         return buildingBlockName;
270     }
271
272     /**
273      * Sets the value of the buildingBlockName property.
274      * 
275      * @param value
276      *     allowed object is
277      *     {@link String }
278      *     
279      */
280     public void setBuildingBlockName(String value) {
281         this.buildingBlockName = value;
282     }
283
284     /**
285      * Gets the value of the buildingBlockStep property.
286      * 
287      * @return
288      *     possible object is
289      *     {@link String }
290      *     
291      */
292     public String getBuildingBlockStep() {
293         return buildingBlockStep;
294     }
295
296     /**
297      * Sets the value of the buildingBlockStep property.
298      * 
299      * @param value
300      *     allowed object is
301      *     {@link String }
302      *     
303      */
304     public void setBuildingBlockStep(String value) {
305         this.buildingBlockStep = value;
306     }
307     
308     /**
309      * Gets the value of the description property.
310      * 
311      * @return
312      *     possible object is
313      *     {@link String }
314      *     
315      */
316     public String getDescription() {
317         return description;
318     }
319
320     /**
321      * Sets the value of the description property.
322      * 
323      * @param value
324      *     allowed object is
325      *     {@link String }
326      *     
327      */
328     public void setDescription(String value) {
329         this.description = value;
330     }
331     
332     /**
333      * Gets the value of the timeout property.
334      * 
335      * @return
336      *     possible object is
337      *     {@link String }
338      *     
339      */
340     public String getTimeout() {
341         return timeout;
342     }
343
344     /**
345      * Sets the value of the timeout property.
346      * 
347      * @param value
348      *     allowed object is
349      *     {@link String }
350      *     
351      */
352     public void setTimeout(String value) {
353         this.timeout = value;
354     }
355
356     /**
357      * Gets the value of the validResponses property.
358      * 
359      * @return
360      *     possible object is
361      *     {@link ValidResponses }
362      *     
363      */
364     public List<String> getValidResponses() {
365         return validResponses;
366     }
367
368     /**
369      * Sets the value of the validResponses property.
370      * 
371      * @param value
372      *     allowed object is
373      *     {@link ValidResponses }
374      *     
375      */
376     public void setValidResponses(List<String> value) {
377         this.validResponses = value;
378     }
379
380
381     
382
383 }