Tosca for Workflow operations
[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(Map<String, ToscaProperty> inputs) {
47         this.inputs = inputs;
48     }
49
50
51     @Override
52     public boolean equals(Object o) {
53         if (this == o) {
54             return true;
55         }
56         if (o == null || getClass() != o.getClass()) {
57             return false;
58         }
59         ToscaLifecycleOperationDefinition that = (ToscaLifecycleOperationDefinition) o;
60         return Objects.equals(implementation, that.implementation) && Objects.equals(inputs, that.inputs);
61     }
62
63     @Override
64     public int hashCode() {
65
66         return Objects.hash(implementation, inputs);
67     }
68
69     public String getDescription() {
70         return description;
71     }
72
73     public void setDescription(String description) {
74         this.description = description;
75     }
76 }