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