re base code
[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 public class AdditionalInfoParameterInfo extends ToscaDataDefinition {
26
27         private String uniqueId;
28         private String key;
29         private String value;
30
31         public AdditionalInfoParameterInfo() {
32                 super();
33         }
34
35         public AdditionalInfoParameterInfo(String key, String value) {
36                 this.key = key;
37                 this.value = value;
38         }
39
40         public AdditionalInfoParameterInfo(String uniqueId, String key, String value) {
41                 this.uniqueId = uniqueId;
42                 this.key = key;
43                 this.value = value;
44         }
45
46         public String getUniqueId() {
47                 return uniqueId;
48         }
49
50         public void setUniqueId(String uniqueId) {
51                 this.uniqueId = uniqueId;
52         }
53
54         public String getKey() {
55                 return key;
56         }
57
58         public void setKey(String key) {
59                 this.key = key;
60         }
61
62         public String getValue() {
63                 return value;
64         }
65
66         public void setValue(String value) {
67                 this.value = value;
68         }
69
70         @Override
71         public String toString() {
72                 return "AdditionalInfoParameterInfo [uniqueId=" + uniqueId + ", key=" + key + ", value=" + value + "]";
73         }
74
75 }