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