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