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 / TaskRequestReference.java
1 /*
2  * ============LICENSE_START======================================================= ONAP - SO
3  * ================================================================================ Copyright (C) 2017 AT&T Intellectual
4  * Property. All rights reserved. ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * 
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.apihandlerinfra.tasksbeans;
17
18 import com.fasterxml.jackson.annotation.JsonRootName;
19 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
20
21 @JsonRootName(value = "taskRequestReference")
22 @JsonSerialize(include = JsonSerialize.Inclusion.NON_DEFAULT)
23 public class TaskRequestReference {
24
25     protected String taskId;
26
27     /**
28      * Gets the value of the taskId property.
29      *
30      * @return possible object is {@link String }
31      *
32      */
33     public String getTaskId() {
34         return taskId;
35     }
36
37     /**
38      * Sets the value of the taskId property.
39      *
40      * @param value allowed object is {@link String }
41      *
42      */
43     public void setTaskId(String value) {
44         this.taskId = value;
45     }
46
47
48
49 }