re base code
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / MapListCapabilityDataDefinition.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 MapListCapabilityDataDefinition extends MapDataDefinition<ListCapabilityDataDefinition> {
33
34         public MapListCapabilityDataDefinition(MapListCapabilityDataDefinition cdt) {
35                 super(cdt);
36
37         }
38
39         @JsonCreator
40         public MapListCapabilityDataDefinition(Map<String, ListCapabilityDataDefinition> mapToscaDataDefinition) {
41                 super(mapToscaDataDefinition);
42         }
43
44         public MapListCapabilityDataDefinition() {
45                 super();
46
47         }
48
49         @JsonValue
50         @Override
51         public Map<String, ListCapabilityDataDefinition> getMapToscaDataDefinition() {
52                 return mapToscaDataDefinition;
53         }
54
55         public void add(String key, CapabilityDataDefinition value) {
56                 if (mapToscaDataDefinition == null) {
57                         mapToscaDataDefinition = new HashMap<>();
58                         ListCapabilityDataDefinition newList = new ListCapabilityDataDefinition(); 
59                         newList.add(value);
60                         put(key, newList);
61                 } else {
62                         ListCapabilityDataDefinition existValue = mapToscaDataDefinition.get(key);
63                         if (existValue == null) {
64                                 ListCapabilityDataDefinition newList = new ListCapabilityDataDefinition(); 
65                                 newList.add(value);
66                                 put(key, newList);
67                         } else {
68                                 existValue.getListToscaDataDefinition().add(value);
69                         }
70                 }
71         }
72 }