Replaced all tabs with spaces in java and pom.xml
[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 import com.openpojo.business.annotation.BusinessKey;
26 import org.apache.commons.lang3.builder.ToStringBuilder;
27
28 public class OperationalEnvServiceModelStatusId implements Serializable {
29
30     private static final long serialVersionUID = 6885534735320068787L;
31
32     @BusinessKey
33     private String requestId;
34     @BusinessKey
35     private String operationalEnvId;
36     @BusinessKey
37     private String serviceModelVersionId;
38
39     public String getRequestId() {
40         return requestId;
41     }
42
43     public void setRequestId(String requestId) {
44         this.requestId = requestId;
45     }
46
47     public String getOperationalEnvId() {
48         return operationalEnvId;
49     }
50
51     public void setOperationalEnvId(String operationalEnvId) {
52         this.operationalEnvId = operationalEnvId;
53     }
54
55     public String getServiceModelVersionId() {
56         return serviceModelVersionId;
57     }
58
59     public void setServiceModelVersionId(String serviceModelVersionId) {
60         this.serviceModelVersionId = serviceModelVersionId;
61     }
62
63     @Override
64     public boolean equals(final Object other) {
65         if (this == other) {
66             return true;
67         }
68         if (!(other instanceof OperationalEnvServiceModelStatusId)) {
69             return false;
70         }
71         OperationalEnvServiceModelStatusId castOther = (OperationalEnvServiceModelStatusId) other;
72         return Objects.equals(this.getRequestId(), castOther.getRequestId())
73                 && Objects.equals(this.getOperationalEnvId(), castOther.getOperationalEnvId())
74                 && Objects.equals(this.getServiceModelVersionId(), castOther.getServiceModelVersionId());
75     }
76
77     @Override
78     public int hashCode() {
79         return Objects.hash(this.getRequestId(), this.getOperationalEnvId(), this.getServiceModelVersionId());
80     }
81
82     @Override
83     public String toString() {
84         return new ToStringBuilder(this).append("requestId", getRequestId())
85                 .append("operationalEnvId", getOperationalEnvId())
86                 .append("serviceModelVersionId", getServiceModelVersionId()).toString();
87     }
88
89 }