Sync Integ to Master
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / MapPropertiesDataDefinition.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
24
25
26 import com.fasterxml.jackson.annotation.JsonCreator;
27 import com.fasterxml.jackson.annotation.JsonValue;
28
29 import java.util.HashMap;
30 import java.util.Map;
31
32 public class MapPropertiesDataDefinition extends MapDataDefinition<PropertyDataDefinition>{
33                 
34         private String parentName;
35         
36         public MapPropertiesDataDefinition(MapDataDefinition cdt, String parentName) {
37                 super(cdt);
38                 this.parentName = parentName;
39         }
40         
41         @JsonCreator
42         public MapPropertiesDataDefinition(Map<String, PropertyDataDefinition > mapToscaDataDefinition) {
43                 super(mapToscaDataDefinition);
44         }
45
46         /**
47          * Copy Constructor
48          */
49         public MapPropertiesDataDefinition(MapPropertiesDataDefinition toBeDeepCopiedMapPropertiesDataDefinition){
50                 this.parentName = toBeDeepCopiedMapPropertiesDataDefinition.parentName;
51                 this.toscaPresentation = toBeDeepCopiedMapPropertiesDataDefinition.toscaPresentation == null ? null : new HashMap(toBeDeepCopiedMapPropertiesDataDefinition.toscaPresentation);
52                 this.mapToscaDataDefinition = toBeDeepCopiedMapPropertiesDataDefinition.mapToscaDataDefinition == null ? null : new HashMap(toBeDeepCopiedMapPropertiesDataDefinition.mapToscaDataDefinition);
53         }
54         public MapPropertiesDataDefinition() {
55                 super();
56                 
57         }
58         @JsonValue
59         @Override
60         public Map<String, PropertyDataDefinition> getMapToscaDataDefinition() {
61                 return mapToscaDataDefinition;
62         }
63
64         
65         public void setMapToscaDataDefinition(Map<String, PropertyDataDefinition> mapToscaDataDefinition) {
66                 this.mapToscaDataDefinition = mapToscaDataDefinition;
67         }
68
69         public String getParentName() {
70                 return parentName;
71         }
72
73         public void setParentName(String parentName) {
74                 this.parentName = parentName;
75         }
76         
77
78 }