Improve test coverage
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / InterfaceDefinition.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.model;
22
23 import com.fasterxml.jackson.annotation.JsonIgnore;
24 import java.util.Map;
25 import java.util.stream.Collectors;
26 import org.apache.commons.collections.MapUtils;
27 import org.openecomp.sdc.be.datatypes.elements.InterfaceDataDefinition;
28 import org.openecomp.sdc.be.datatypes.elements.OperationDataDefinition;
29
30 /**
31  * Definition of the operations that can be performed on (instances of) a Node
32  * Type.
33  *
34  * @author esofer
35  */
36 public class InterfaceDefinition extends InterfaceDataDefinition implements IOperationParameter {
37
38     public InterfaceDefinition() {
39         super();
40     }
41
42     public InterfaceDefinition(String type, String description, Map<String, Operation> operations) {
43         super(type, description);
44         setOperationsMap(operations);
45     }
46
47     public InterfaceDefinition(InterfaceDataDefinition p) {
48         super(p);
49     }
50
51     @Override
52     public boolean isDefinition() {
53         return false;
54     }
55
56     @JsonIgnore
57     public Map<String, Operation> getOperationsMap() {
58         return getOperations().entrySet()
59                               .stream()
60                               .collect(Collectors.toMap(Map.Entry::getKey, e -> new Operation(e
61                                                                            .getValue())));
62     }
63
64     @JsonIgnore
65     public void setOperationsMap(final Map<String, Operation> operations) {
66         if (MapUtils.isEmpty(operations)) {
67             return;
68         }
69         final Map<String, OperationDataDefinition> convertedOperation = operations.entrySet()
70             .stream()
71             .collect(Collectors.toMap(Map.Entry::getKey, e -> new OperationDataDefinition(e.getValue())));
72         setOperations(convertedOperation);
73     }
74
75     /**
76      * Checks if the interface has the given operation
77      * @param operation the operation to check
78      * @return {@code true} if the operation exists, {@code false} otherwise
79      */
80     public boolean hasOperation(final String operation) {
81         final Map<String, OperationDataDefinition> operationMap = getOperations();
82         if (MapUtils.isEmpty(operationMap)) {
83             return false;
84         }
85         return operationMap.keySet().stream()
86             .anyMatch(operation1 -> operation1.equalsIgnoreCase(operation));
87     }
88
89 }