Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / ForwarderEvc.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("forwarder-evc")
34 public class ForwarderEvc implements Serializable, ShallowCopy<ForwarderEvc> {
35
36         private static final long serialVersionUID = 3822241337439817708L;
37
38         @Id
39         @JsonProperty("forwarder-evc-id")
40         private String forwarderEvcId;
41         @JsonProperty("circuit-id")
42         private String circuitId;
43         @JsonProperty("ivlan")
44         private String ivlan;
45         @JsonProperty("svlan")
46         private String svlan;
47         @JsonProperty("cvlan")
48         private String cvlan;
49
50         public String getForwarderEvcId() {
51                 return forwarderEvcId;
52         }
53
54         public void setForwarderEvcId(String forwarderEvcId) {
55                 this.forwarderEvcId = forwarderEvcId;
56         }
57
58         public String getCircuitId() {
59                 return circuitId;
60         }
61
62         public void setCircuitId(String circuitId) {
63                 this.circuitId = circuitId;
64         }
65
66         public String getIvlan() {
67                 return ivlan;
68         }
69
70         public void setIvlan(String ivlan) {
71                 this.ivlan = ivlan;
72         }
73
74         public String getSvlan() {
75                 return svlan;
76         }
77
78         public void setSvlan(String svlan) {
79                 this.svlan = svlan;
80         }
81
82         public String getCvlan() {
83                 return cvlan;
84         }
85
86         public void setCvlan(String cvlan) {
87                 this.cvlan = cvlan;
88         }
89
90         @Override
91         public boolean equals(final Object other) {
92                 if (!(other instanceof ForwarderEvc)) {
93                         return false;
94                 }
95                 ForwarderEvc castOther = (ForwarderEvc) other;
96                 return new EqualsBuilder().append(forwarderEvcId, castOther.forwarderEvcId).isEquals();
97         }
98
99         @Override
100         public int hashCode() {
101                 return new HashCodeBuilder().append(forwarderEvcId).toHashCode();
102         }
103 }