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