0f3656cd31f542f46fe1b33fa73083772497d4a9
[so.git] / mso-api-handlers / mso-requests-db / src / main / java / org / onap / so / db / request / beans / ResourceOperationStatusId.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 ResourceOperationStatusId implements Serializable {
30
31         private static final long serialVersionUID = -7425019928845751157L;
32         
33         @BusinessKey
34         private String serviceId;
35         @BusinessKey
36     private String operationId;
37         @BusinessKey
38     private String resourceTemplateUUID;
39         
40         public ResourceOperationStatusId() {
41                 
42         }
43         
44         public ResourceOperationStatusId(String serviceId, String operationId, String resourceTemplateUUID) {
45                 this.serviceId = serviceId;
46                 this.operationId = operationId;
47                 this.resourceTemplateUUID = resourceTemplateUUID;
48         }
49         public String getServiceId() {
50                 return serviceId;
51         }
52         public void setServiceId(String serviceId) {
53                 this.serviceId = serviceId;
54         }
55         public String getOperationId() {
56                 return operationId;
57         }
58         public void setOperationId(String operationId) {
59                 this.operationId = operationId;
60         }
61         public String getResourceTemplateUUID() {
62                 return resourceTemplateUUID;
63         }
64         public void setResourceTemplateUUID(String resourceTemplateUUID) {
65                 this.resourceTemplateUUID = resourceTemplateUUID;
66         }
67         @Override
68         public boolean equals(final Object other) {
69                 if (this == other) {
70                         return true;
71                 }
72                 if (!(other instanceof ResourceOperationStatusId)) {
73                         return false;
74                 }
75                 ResourceOperationStatusId castOther = (ResourceOperationStatusId) other;
76                 return Objects.equals(this.getServiceId(), castOther.getServiceId())
77                                 && Objects.equals(this.getOperationId(), castOther.getOperationId())
78                                 && Objects.equals(this.getResourceTemplateUUID(), castOther.getResourceTemplateUUID());
79         }
80         @Override
81         public int hashCode() {
82                 return Objects.hash(this.getServiceId(), this.getOperationId(),this.getResourceTemplateUUID());
83         }
84         @Override
85         public String toString() {
86                 return new ToStringBuilder(this).append("serviceId", getServiceId()).append("operationId", getOperationId())
87                                 .append("resourceTemplateUUID", getResourceTemplateUUID()).toString();
88         }
89
90     
91 }