Create required classes for Workflow Tosca
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaLifecycleOperationDefinition.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 ToscaLifecycleOperationDefinition {
28
29   private String description;
30   private String implementation;
31   private Map<String, ToscaProperty> inputs;
32
33
34   public String getImplementation() {
35     return implementation;
36   }
37
38   public void setImplementation(String implementation) {
39     this.implementation = implementation;
40   }
41
42   public Map<String, ToscaProperty> getInputs() {
43     return inputs;
44   }
45
46   public void setInputs(
47       Map<String, ToscaProperty> inputs) {
48     this.inputs = inputs;
49   }
50
51
52   @Override
53   public boolean equals(Object o) {
54     if (this == o) {
55       return true;
56     }
57     if (o == null || getClass() != o.getClass()) {
58       return false;
59     }
60     ToscaLifecycleOperationDefinition that = (ToscaLifecycleOperationDefinition) o;
61     return Objects.equals(implementation, that.implementation) &&
62         Objects.equals(inputs, that.inputs);
63   }
64
65   @Override
66   public int hashCode() {
67
68     return Objects.hash(implementation, inputs);
69   }
70
71   public String getDescription() {
72     return description;
73   }
74
75   public void setDescription(String description) {
76     this.description = description;
77   }
78 }