7269394bcac5f869531638fc5602840292da899c
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaInterfaceNodeType.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.model;
18
19 import java.util.Map;
20 import java.util.Objects;
21
22 /**
23  * @author KATYR
24  * @since March 26, 2018
25  */
26
27 public class ToscaInterfaceNodeType {
28
29   private String derived_from;
30   private String description;
31   private Map<String, Object> operations;
32
33
34   public String getDerived_from() {
35     return derived_from;
36   }
37
38   public void setDerived_from(String derived_from) {
39     this.derived_from = derived_from;
40   }
41
42   public String getDescription() {
43     return description;
44   }
45
46   public void setDescription(String description) {
47     this.description = description;
48   }
49
50   @Override
51   public boolean equals(Object o) {
52     if (this == o) {
53       return true;
54     }
55     if (o == null || getClass() != o.getClass()) {
56       return false;
57     }
58     ToscaInterfaceNodeType that = (ToscaInterfaceNodeType) o;
59     return Objects.equals(derived_from, that.derived_from) &&
60         Objects.equals(description, that.description);
61   }
62
63   @Override
64   public int hashCode() {
65
66     return Objects.hash(derived_from, description);
67   }
68
69   public Map<String, Object> getOperations() {
70     return operations;
71   }
72
73   public void setOperations(Map<String, Object> operations) {
74     this.operations = operations;
75   }
76 }