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