Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / L3InterfaceIpv6AddressList.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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  */
20
21 package org.onap.so.bpmn.servicedecomposition.bbobjects;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.annotation.JsonRootName;
27 import org.apache.commons.lang3.builder.EqualsBuilder;
28 import org.apache.commons.lang3.builder.HashCodeBuilder;
29 import org.onap.so.bpmn.servicedecomposition.ShallowCopy;
30
31 import javax.persistence.Id;
32
33 @JsonRootName("l3-interface-ipv6-address-list")
34 public class L3InterfaceIpv6AddressList implements Serializable, ShallowCopy<L3InterfaceIpv6AddressList> {
35
36         private static final long serialVersionUID = -414901751774739052L;
37
38         @Id
39         @JsonProperty("l3-interface-ipv6-address")
40         private String l3InterfaceIpv6Address;
41         @JsonProperty("l3-interface-ipv6-prefix-length")
42         private Long l3InterfaceIpv6PrefixLength;
43         @JsonProperty("vlan-id-inner")
44         private Long vlanIdInner;
45         @JsonProperty("vlan-id-outer")
46         private Long vlanIdOuter;
47         @JsonProperty("is-floating")
48         private Boolean isFloating;
49         @JsonProperty("neutron-network-id")
50         private String neutronNetworkId;
51         @JsonProperty("neutron-subnet-id")
52         private String neutronSubnetId;
53
54         public String getL3InterfaceIpv6Address() {
55                 return l3InterfaceIpv6Address;
56         }
57
58         public void setL3InterfaceIpv6Address(String l3InterfaceIpv6Address) {
59                 this.l3InterfaceIpv6Address = l3InterfaceIpv6Address;
60         }
61
62         public Long getL3InterfaceIpv6PrefixLength() {
63                 return l3InterfaceIpv6PrefixLength;
64         }
65
66         public void setL3InterfaceIpv6PrefixLength(Long l3InterfaceIpv6PrefixLength) {
67                 this.l3InterfaceIpv6PrefixLength = l3InterfaceIpv6PrefixLength;
68         }
69
70         public Long getVlanIdInner() {
71                 return vlanIdInner;
72         }
73
74         public void setVlanIdInner(Long vlanIdInner) {
75                 this.vlanIdInner = vlanIdInner;
76         }
77
78         public Long getVlanIdOuter() {
79                 return vlanIdOuter;
80         }
81
82         public void setVlanIdOuter(Long vlanIdOuter) {
83                 this.vlanIdOuter = vlanIdOuter;
84         }
85
86         public Boolean getIsFloating() {
87                 return isFloating;
88         }
89
90         public void setIsFloating(Boolean isFloating) {
91                 this.isFloating = isFloating;
92         }
93
94         public String getNeutronNetworkId() {
95                 return neutronNetworkId;
96         }
97
98         public void setNeutronNetworkId(String neutronNetworkId) {
99                 this.neutronNetworkId = neutronNetworkId;
100         }
101
102         public String getNeutronSubnetId() {
103                 return neutronSubnetId;
104         }
105
106         public void setNeutronSubnetId(String neutronSubnetId) {
107                 this.neutronSubnetId = neutronSubnetId;
108         }
109
110         @Override
111         public boolean equals(final Object other) {
112                 if (!(other instanceof L3InterfaceIpv6AddressList)) {
113                         return false;
114                 }
115                 L3InterfaceIpv6AddressList castOther = (L3InterfaceIpv6AddressList) other;
116                 return new EqualsBuilder().append(l3InterfaceIpv6Address, castOther.l3InterfaceIpv6Address).isEquals();
117         }
118
119         @Override
120         public int hashCode() {
121                 return new HashCodeBuilder().append(l3InterfaceIpv6Address).toHashCode();
122         }
123 }