Openstack adapter can't resolve HEAT parameter
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / Tenant.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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 org.apache.commons.lang3.builder.EqualsBuilder;
28 import org.apache.commons.lang3.builder.HashCodeBuilder;
29
30 import com.fasterxml.jackson.annotation.JsonProperty;
31
32 public class Tenant implements Serializable {
33
34         /**
35          * 
36          */
37         private static final long serialVersionUID = -8704478668505531590L;
38         @Id
39         @JsonProperty("tenant-id")
40         private String tenantId;
41         @JsonProperty("tenant-name")
42         private String tenantName;
43         @JsonProperty("tenant-context")
44         private String tenantContext;
45         
46         @Override
47         public boolean equals(final Object other) {
48                 if (!(other instanceof Tenant)) {
49                         return false;
50                 }
51                 Tenant castOther = (Tenant) other;
52                 return new EqualsBuilder().append(tenantId, castOther.tenantId).isEquals();
53         }
54         @Override
55         public int hashCode() {
56                 return new HashCodeBuilder().append(tenantId).toHashCode();
57         }
58         public String getTenantId() {
59                 return tenantId;
60         }
61         public void setTenantId(String tenantId) {
62                 this.tenantId = tenantId;
63         }
64         public String getTenantName() {
65                 return tenantName;
66         }
67         public void setTenantName(String tenantName) {
68                 this.tenantName = tenantName;
69         }
70         public String getTenantContext() {
71                 return tenantContext;
72         }
73         public void setTenantContext(String tenantContext) {
74                 this.tenantContext = tenantContext;
75         }
76
77         
78 }