common code coverage increase
[sdc.git] / common / onap-tosca-datatype / src / main / java / org / onap / sdc / tosca / datatypes / model / Implementation.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  * Modifications copyright (c) 2019 Nokia
16  */
17
18 package org.onap.sdc.tosca.datatypes.model;
19
20 import java.util.List;
21 import java.util.Objects;
22
23 import org.onap.sdc.tosca.services.DataModelCloneUtil;
24
25
26 public class Implementation implements Cloneable {
27
28     private String primary;
29     private List<String> dependencies;
30
31     public String getPrimary() {
32         return primary;
33     }
34
35     public void setPrimary(String primary) {
36         this.primary = primary;
37     }
38
39     public List<String> getDependencies() {
40         return dependencies;
41     }
42
43     public void setDependencies(List<String> dependencies) {
44         this.dependencies = dependencies;
45     }
46
47     @Override
48     public boolean equals(Object o) {
49         if (this == o) {
50             return true;
51         }
52         if (!(o instanceof Implementation)) {
53             return false;
54         }
55         Implementation that = (Implementation) o;
56         return Objects.equals(primary, that.primary)
57                 && Objects.equals(dependencies, that.dependencies);
58     }
59
60     @Override
61     public int hashCode() {
62         return Objects.hash(primary, dependencies);
63     }
64
65     @Override
66     public Implementation clone() {
67         Implementation implementation = new Implementation();
68         implementation.setPrimary(this.getPrimary());
69         implementation.setDependencies(DataModelCloneUtil.cloneListString(this.getDependencies()));
70         return implementation;
71     }
72 }