Fix for ETSI_CATALOG onboarding NS package
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / main / java / org / onap / so / sdcsimulator / models / ServiceMetadata.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.sdcsimulator.models;
21
22 import java.io.Serializable;
23 import org.springframework.util.ObjectUtils;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 /**
27  *
28  * @author Waqas Ikram (waqas.ikram@est.tech)
29  *
30  */
31 public class ServiceMetadata extends Metadata implements Serializable {
32
33     private static final long serialVersionUID = -5677805295913361365L;
34     @JsonProperty("distributionStatus")
35     private String distributionStatus;
36
37     public String getDistributionStatus() {
38         return distributionStatus;
39     }
40
41     public void setDistributionStatus(final String distributionStatus) {
42         this.distributionStatus = distributionStatus;
43     }
44
45     @Override
46     public int hashCode() {
47         final int prime = 31;
48         int result = 1;
49         result = prime * result + super.hashCode();
50         result = prime * result + ((distributionStatus == null) ? 0 : distributionStatus.hashCode());
51
52         return result;
53     }
54
55     @Override
56     public boolean equals(final Object obj) {
57         if (obj instanceof ServiceMetadata) {
58             final ServiceMetadata other = (ServiceMetadata) obj;
59             return super.equals(obj) && ObjectUtils.nullSafeEquals(distributionStatus, other.distributionStatus);
60
61         }
62         return false;
63     }
64
65     @Override
66     public String toString() {
67         final StringBuilder sb = new StringBuilder();
68         sb.append(super.toString());
69         sb.deleteCharAt(sb.length() - 1);
70         sb.append("    distributionStatus: ").append(distributionStatus).append("\n");
71
72         sb.append("}");
73         return sb.toString();
74     }
75
76 }