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 OperationDefinitionType extends OperationDefinition {
25 private String implementation;
26 private Map<String, PropertyDefinition> inputs;
28 public String getImplementation() {
29 return implementation;
32 public void setImplementation(String implementation) {
33 this.implementation = implementation;
36 public Map<String, PropertyDefinition> getInputs() {
40 public void setInputs(Map<String, PropertyDefinition> inputs) {
45 public boolean equals(Object o) {
49 if (!(o instanceof OperationDefinitionType)) {
52 OperationDefinitionType that = (OperationDefinitionType) 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 OperationDefinitionType clone() {
64 OperationDefinition operationDefinition = super.clone();
65 OperationDefinitionType operationDefinitionType = new OperationDefinitionType();
66 operationDefinitionType.setDescription(operationDefinition.getDescription());
67 operationDefinitionType.setImplementation(this.getImplementation());
68 operationDefinitionType.setInputs(DataModelCloneUtil.cloneStringPropertyDefinitionMap(this.getInputs()));
69 return operationDefinitionType;