Worklow Operation output 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 public class ToscaLifecycleOperationDefinition {
23
24     private String description;
25     private String implementation;
26     private Map<String, ToscaProperty> inputs;
27     private Map<String, ToscaAttribute> outputs;
28
29
30     public String getImplementation() {
31         return implementation;
32     }
33
34     public void setImplementation(String implementation) {
35         this.implementation = implementation;
36     }
37
38     public Map<String, ToscaProperty> getInputs() {
39         return inputs;
40     }
41
42     public void setInputs(Map<String, ToscaProperty> inputs) {
43         this.inputs = inputs;
44     }
45
46     public Map<String, ToscaAttribute> getOutputs() {
47         return outputs;
48     }
49
50     public void setOutputs(Map<String, ToscaAttribute> outputs) {
51         this.outputs = outputs;
52     }
53
54     @Override
55     public boolean equals(Object o) {
56         if (this == o) {
57             return true;
58         }
59         if (o == null || getClass() != o.getClass()) {
60             return false;
61         }
62         ToscaLifecycleOperationDefinition that = (ToscaLifecycleOperationDefinition) o;
63         return Objects.equals(implementation, that.implementation) && Objects.equals(inputs, that.inputs)
64                 && Objects.equals(outputs, that.outputs);
65     }
66
67     @Override
68     public int hashCode() {
69         return Objects.hash(implementation, inputs, outputs);
70     }
71
72     public String getDescription() {
73         return description;
74     }
75
76     public void setDescription(String description) {
77         this.description = description;
78     }
79 }