b0a2e850eda88056cf7ec476b4a6185aa1f4417d
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22
23 package org.openecomp.sdc.vendorsoftwareproduct.types.composition;
24
25 import java.util.Objects;
26
27 public class Network implements CompositionDataEntity {
28   private String name;
29   private boolean dhcp;
30
31   public String getName() {
32     return name;
33   }
34
35   public void setName(String name) {
36     this.name = name;
37   }
38
39   public boolean isDhcp() {
40     return dhcp;
41   }
42
43   public void setDhcp(boolean dhcp) {
44     this.dhcp = dhcp;
45   }
46
47   @Override
48   public int hashCode() {
49     int result = name != null ? name.hashCode() : 0;
50     result = 31 * result + (dhcp ? 1 : 0);
51     return result;
52   }
53
54   @Override
55   public boolean equals(Object object) {
56     if (this == object) {
57       return true;
58     }
59     if (object == null || getClass() != object.getClass()) {
60       return false;
61     }
62
63     Network network = (Network) object;
64
65     if (!Objects.equals(dhcp, network.dhcp)) {
66       return false;
67     }
68     return name != null ? name.equals(network.name) : network.name == null;
69
70   }
71 }