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