b90a406abbeb471c902da3b19f612fe0725a6669
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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 package org.openecomp.sdc.be.datatypes.elements;
21
22 import java.util.ArrayList;
23 import java.util.Collections;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27 import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
28 import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
29
30 /**
31  * Maps an object type (e.g. "monitoring", "workflows" etc) to a list of external references.
32  * <p>
33  * "monitoring" -> { "ref1",  "ref2" }, "workflows"  -> { "ref1",  "ref2" }
34  */
35 public class MapComponentInstanceExternalRefs extends ToscaDataDefinition {
36
37     public MapComponentInstanceExternalRefs() {
38         setComponentInstanceExternalRefs(new HashMap<>());
39     }
40
41     public MapComponentInstanceExternalRefs(Map<String, List<String>> instanceExternalReferences) {
42         setComponentInstanceExternalRefs(instanceExternalReferences);
43     }
44
45     public Map<String, List<String>> getComponentInstanceExternalRefs() {
46         return (Map<String, List<String>>) getToscaPresentationValue(JsonPresentationFields.EXTERNAL_REF);
47     }
48
49     public void setComponentInstanceExternalRefs(Map<String, List<String>> componentInstanceExternalRefs) {
50         setToscaPresentationValue(JsonPresentationFields.EXTERNAL_REF, componentInstanceExternalRefs);
51     }
52
53     public List<String> getExternalRefsByObjectType(String objectType) {
54         return ((Map<String, List<String>>) getToscaPresentationValue(JsonPresentationFields.EXTERNAL_REF)).get(objectType);
55     }
56
57     /**
58      * Adds a reference to the given object type. Will do nothing if already exist.
59      *
60      * @param objectType object type to associate reference to
61      * @param ref        to add
62      */
63     public boolean addExternalRef(String objectType, String ref) {
64         List<String> refList = this.getExternalRefsByObjectType(objectType);
65         if (refList == null) {
66             //Create list if does not exist and add it to map
67             refList = new ArrayList<>();
68             this.getComponentInstanceExternalRefs().put(objectType, refList);
69         }
70         //Add reference to list if does not exist
71         if (!refList.contains(ref)) {
72             return refList.add(ref);
73         }
74         return false;
75     }
76
77     public boolean deleteExternalRef(String objectType, String ref) {
78         List<String> refList = this.getExternalRefsByObjectType(objectType);
79         if (refList != null) {
80             return refList.remove(ref);
81         } else {
82             return false;
83         }
84     }
85
86     public boolean replaceExternalRef(String objectType, String oldRef, String newRef) {
87         List<String> refList = this.getExternalRefsByObjectType(objectType);
88         if (refList != null && !refList.contains(newRef)) {
89             return Collections.replaceAll(refList, oldRef, newRef);
90         } else {
91             return false;
92         }
93     }
94 }