301e24f8ec00e367a95917ee7671d52a649f5c9d
[so.git] / mso-api-handlers / mso-requests-db / src / main / java / org / onap / so / db / request / beans / OperationalEnvServiceModelStatusId.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.db.request.beans;
22
23 import java.io.Serializable;
24 import java.util.Objects;
25
26 import com.openpojo.business.annotation.BusinessKey;
27 import org.apache.commons.lang3.builder.ToStringBuilder;
28
29 public class OperationalEnvServiceModelStatusId implements Serializable {
30
31         private static final long serialVersionUID = 6885534735320068787L;
32         
33         @BusinessKey
34         private String requestId;
35         @BusinessKey
36         private String operationalEnvId;
37         @BusinessKey
38         private String serviceModelVersionId;
39         
40         public String getRequestId() {
41                 return requestId;
42         }
43         public void setRequestId(String requestId) {
44                 this.requestId = requestId;
45         }
46         public String getOperationalEnvId() {
47                 return operationalEnvId;
48         }
49         public void setOperationalEnvId(String operationalEnvId) {
50                 this.operationalEnvId = operationalEnvId;
51         }
52         public String getServiceModelVersionId() {
53                 return serviceModelVersionId;
54         }
55         public void setServiceModelVersionId(String serviceModelVersionId) {
56                 this.serviceModelVersionId = serviceModelVersionId;
57         }
58         @Override
59         public boolean equals(final Object other) {
60                 if (this == other) {
61                         return true;
62                 }
63                 if (!(other instanceof OperationalEnvServiceModelStatusId)) {
64                         return false;
65                 }
66                 OperationalEnvServiceModelStatusId castOther = (OperationalEnvServiceModelStatusId) other;
67                 return Objects.equals(this.getRequestId(), castOther.getRequestId())
68                                 && Objects.equals(this.getOperationalEnvId(), castOther.getOperationalEnvId())
69                                 && Objects.equals(this.getServiceModelVersionId(), castOther.getServiceModelVersionId());
70         }
71         @Override
72         public int hashCode() {
73                 return Objects.hash(this.getRequestId(), this.getOperationalEnvId(), this.getServiceModelVersionId());
74         }
75         @Override
76         public String toString() {
77                 return new ToStringBuilder(this).append("requestId", getRequestId())
78                                 .append("operationalEnvId", getOperationalEnvId())
79                                 .append("serviceModelVersionId", getServiceModelVersionId()).toString();
80         }
81
82 }