2 * Copyright © 2016-2018 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.sdc.tosca.datatypes.model;
20 import java.util.Objects;
21 import org.onap.sdc.tosca.services.DataModelCloneUtil;
23 public class OperationDefinitionTemplate extends OperationDefinition {
25 private Implementation implementation;
26 private Map<String, Object> inputs;
28 public Implementation getImplementation() {
29 return implementation;
32 public void setImplementation(Implementation implementation) {
33 this.implementation = implementation;
36 public Map<String, Object> getInputs() {
40 public void setInputs(Map<String, Object> inputs) {
45 public boolean equals(Object o) {
49 if (!(o instanceof OperationDefinitionTemplate)) {
52 OperationDefinitionTemplate that = (OperationDefinitionTemplate) o;
53 return Objects.equals(implementation, that.implementation) && Objects.equals(inputs, that.inputs);
57 public int hashCode() {
59 return Objects.hash(implementation, inputs);
63 public OperationDefinitionTemplate clone() {
64 OperationDefinition operationDefinition = super.clone();
65 OperationDefinitionTemplate operationDefinitionTemplate = new OperationDefinitionTemplate();
66 operationDefinitionTemplate.setDescription(operationDefinition.getDescription());
67 operationDefinitionTemplate.setImplementation(this.getImplementation());
68 operationDefinitionTemplate.setInputs(DataModelCloneUtil.cloneStringObjectMap(this.getInputs()));
69 return operationDefinitionTemplate;