Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / RouteTarget.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 javax.persistence.Id;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonRootName;
29 import org.apache.commons.lang3.builder.EqualsBuilder;
30 import org.apache.commons.lang3.builder.HashCodeBuilder;
31 import org.onap.so.bpmn.servicedecomposition.ShallowCopy;
32
33 @JsonRootName("route-target")
34 public class RouteTarget implements Serializable, ShallowCopy<RouteTarget> {
35         private static final long serialVersionUID = -4635525992843470461L;
36         
37         @Id
38         @JsonProperty("global-route-target")
39     protected String globalRouteTarget;
40         @Id
41     @JsonProperty("route-target-role")
42     protected String routeTargetRole;
43     @JsonProperty("resource-version")
44     protected String resourceVersion;
45
46     public String getGlobalRouteTarget() {
47         return globalRouteTarget;
48     }
49
50     public void setGlobalRouteTarget(String value) {
51         this.globalRouteTarget = value;
52     }
53
54     public String getRouteTargetRole() {
55         return routeTargetRole;
56     }
57
58     public void setRouteTargetRole(String value) {
59         this.routeTargetRole = value;
60     }
61
62     public String getResourceVersion() {
63         return resourceVersion;
64     }
65
66     public void setResourceVersion(String value) {
67         this.resourceVersion = value;
68     }
69
70         @Override
71         public boolean equals(final Object other) {
72                 if (!(other instanceof RouteTarget)) {
73                         return false;
74                 }
75                 RouteTarget castOther = (RouteTarget) other;
76                 return new EqualsBuilder().append(globalRouteTarget, castOther.globalRouteTarget)
77                                 .append(routeTargetRole, castOther.routeTargetRole).isEquals();
78         }
79
80         @Override
81         public int hashCode() {
82                 return new HashCodeBuilder().append(globalRouteTarget).append(routeTargetRole).toHashCode();
83         }
84 }