Sync Integ to Master
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / AdditionalInfoParameterInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.openecomp.sdc.be.datatypes.elements;
22
23 import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
24
25 import java.io.Serializable;
26
27 public class AdditionalInfoParameterInfo extends ToscaDataDefinition implements Serializable {
28
29         /**
30          * 
31          */
32         private static final long serialVersionUID = 2066876282722907709L;
33
34         String uniqueId;
35         String key;
36         String value;
37
38         public AdditionalInfoParameterInfo() {
39                 super();
40         }
41
42         public AdditionalInfoParameterInfo(String key, String value) {
43                 super();
44                 this.key = key;
45                 this.value = value;
46         }
47
48         public AdditionalInfoParameterInfo(String uniqueId, String key, String value) {
49                 super();
50                 this.uniqueId = uniqueId;
51                 this.key = key;
52                 this.value = value;
53         }
54
55         public String getUniqueId() {
56                 return uniqueId;
57         }
58
59         public void setUniqueId(String uniqueId) {
60                 this.uniqueId = uniqueId;
61         }
62
63         public String getKey() {
64                 return key;
65         }
66
67         public void setKey(String key) {
68                 this.key = key;
69         }
70
71         public String getValue() {
72                 return value;
73         }
74
75         public void setValue(String value) {
76                 this.value = value;
77         }
78
79         @Override
80         public String toString() {
81                 return "AdditionalInfoParameterInfo [uniqueId=" + uniqueId + ", key=" + key + ", value=" + value + "]";
82         }
83
84 }