AT&T 1712 and 1802 release code
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / tasksbeans / TaskVariableValue.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.apihandlerinfra.tasksbeans;\r
22 \r
23 import com.fasterxml.jackson.databind.annotation.JsonSerialize;\r
24 \r
25 @JsonSerialize(include=JsonSerialize.Inclusion.NON_DEFAULT)\r
26 public class TaskVariableValue {\r
27 \r
28         protected String name;\r
29         protected String value;\r
30         protected String operator;\r
31         \r
32          /**\r
33      * Gets the value of the name property.\r
34      *\r
35      * @return\r
36      *     possible object is\r
37      *     {@link String }\r
38      *\r
39      */\r
40     public String getName() {\r
41         return name;\r
42     }\r
43 \r
44     /**\r
45      * Sets the value of the name property.\r
46      *\r
47      * @param value\r
48      *     allowed object is\r
49      *     {@link String }\r
50      *\r
51      */\r
52     public void setName(String value) {\r
53         this.name = value;\r
54     }\r
55         \r
56         \r
57     /**\r
58      * Gets the value of the value property.\r
59      *\r
60      * @return\r
61      *     possible object is\r
62      *     {@link String }\r
63      *\r
64      */\r
65     public String getValue() {\r
66         return value;\r
67     }\r
68 \r
69     /**\r
70      * Sets the value of the value property.\r
71      *\r
72      * @param value\r
73      *     allowed object is\r
74      *     {@link String }\r
75      *\r
76      */\r
77     public void setValue(String value) {\r
78         this.value = value;\r
79     }\r
80     \r
81     /**\r
82      * Gets the value of the operator property.\r
83      *\r
84      * @return\r
85      *     possible object is\r
86      *     {@link String }\r
87      *\r
88      */\r
89     public String getOperator() {\r
90         return operator;\r
91     }\r
92 \r
93     /**\r
94      * Sets the value of the operator property.\r
95      *\r
96      * @param value\r
97      *     allowed object is\r
98      *     {@link String }\r
99      *\r
100      */\r
101     public void setOperator(String value) {\r
102         this.operator = value;\r
103     }\r
104         \r
105         \r
106 \r
107 }\r