cab7d53cd714e1dc54f2c8da2f43dd1e69996444
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / utils / NodeFilterConverter.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.be.tosca.utils;
18
19 import java.util.List;
20 import java.util.Map;
21 import java.util.stream.Collectors;
22 import org.openecomp.sdc.be.datamodel.utils.ConstraintConvertor;
23 import org.openecomp.sdc.be.datatypes.elements.CINodeFilterDataDefinition;
24 import org.openecomp.sdc.be.ui.model.UIConstraint;
25 import org.openecomp.sdc.be.ui.model.UINodeFilter;
26
27 public class NodeFilterConverter {
28
29
30     public Map<String, UINodeFilter> convertDataMapToUI(Map<String, CINodeFilterDataDefinition> inMap) {
31         return inMap.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, o -> convertToUi(o.getValue())));
32     }
33
34     public UINodeFilter convertToUi(CINodeFilterDataDefinition inNodeFilter) {
35         UINodeFilter retVal = new UINodeFilter();
36         final ConstraintConvertor constraintConvertor = new ConstraintConvertor();
37         if (inNodeFilter.getProperties() == null || inNodeFilter.getProperties().isEmpty()) {
38             return retVal;
39         }
40         List<UIConstraint> constraints = inNodeFilter.getProperties().getListToscaDataDefinition().stream()
41             .map(property -> property.getConstraints().iterator().next())
42             .map(constraintConvertor::convert)
43             .collect(Collectors.toList());
44         retVal.setProperties(constraints);
45         return retVal;
46     }
47 }