re base code
[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 org.openecomp.sdc.be.datatypes.elements.InterfaceDataDefinition;
25 import org.openecomp.sdc.be.datatypes.elements.OperationDataDefinition;
26
27 import java.util.Map;
28 import java.util.stream.Collectors;
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     private boolean definition;
39
40     public InterfaceDefinition() {
41         super();
42     }
43
44     public InterfaceDefinition(String type, String description, Map<String, Operation> operations) {
45         super(type, description);
46         setOperationsMap(operations);
47     }
48
49     public InterfaceDefinition(InterfaceDataDefinition p) {
50         super(p);
51     }
52
53     @Override
54     public boolean isDefinition() {
55         return false;
56     }
57
58     public void setDefinition(boolean definition) {
59         this.definition = definition;
60     }
61
62     @JsonIgnore
63     public Map<String, Operation> getOperationsMap() {
64         return getOperations().entrySet()
65                               .stream()
66                               .collect(Collectors.toMap(Map.Entry::getKey, e -> new Operation(e
67                                                                            .getValue())));
68     }
69
70     @JsonIgnore
71     public void setOperationsMap(Map<String, Operation> operations) {
72         Map<String, OperationDataDefinition> convertedOperation = operations.entrySet()
73                                                                             .stream()
74                                                                             .collect(Collectors.toMap(Map.Entry::getKey, e -> new OperationDataDefinition(e
75                                                                                     .getValue())));
76         setOperations(convertedOperation);
77     }
78
79     @Override
80     public String toString() {
81         return "InterfaceDefinition [definition=" + definition + "]";
82     }
83
84 }