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 / WatchdogServiceModVerIdLookupId.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 WatchdogServiceModVerIdLookupId implements Serializable {
29
30     private static final long serialVersionUID = 9112709226209619993L;
31
32     @BusinessKey
33     private String distributionId;
34     @BusinessKey
35     private String serviceModelVersionId;
36
37     public String getDistributionId() {
38         return distributionId;
39     }
40
41     public void setDistributionId(String distributionId) {
42         this.distributionId = distributionId;
43     }
44
45     public String getServiceModelVersionId() {
46         return serviceModelVersionId;
47     }
48
49     public void setServiceModelVersionId(String serviceModelVersionId) {
50         this.serviceModelVersionId = serviceModelVersionId;
51     }
52
53     @Override
54     public boolean equals(final Object other) {
55         if (this == other) {
56             return true;
57         }
58         if (!(other instanceof WatchdogServiceModVerIdLookupId)) {
59             return false;
60         }
61         WatchdogServiceModVerIdLookupId castOther = (WatchdogServiceModVerIdLookupId) other;
62         return Objects.equals(this.getDistributionId(), castOther.getDistributionId())
63                 && Objects.equals(getServiceModelVersionId(), castOther.getServiceModelVersionId());
64     }
65
66     @Override
67     public int hashCode() {
68         return Objects.hash(this.getDistributionId(), this.getServiceModelVersionId());
69     }
70
71     @Override
72     public String toString() {
73         return new ToStringBuilder(this).append("distributionId", getDistributionId())
74                 .append("serviceModelVersionId", getServiceModelVersionId()).toString();
75     }
76
77
78
79 }