Adding endpoints to SDC simulator
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / main / java / org / onap / so / sdcsimulator / models / ResourceAssetInfo.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 org.springframework.util.ObjectUtils;
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 /**
26  *
27  * @author Waqas Ikram (waqas.ikram@est.tech)
28  *
29  */
30 public class ResourceAssetInfo extends AssetInfo {
31
32     private static final long serialVersionUID = -6812049917047990700L;
33
34     @JsonProperty("subCategory")
35     private String subCategory;
36
37     public String getSubCategory() {
38         return subCategory;
39     }
40
41     public void setSubCategory(final String subCategory) {
42         this.subCategory = subCategory;
43     }
44
45     public ResourceAssetInfo subCategory(final String subCategory) {
46         this.subCategory = subCategory;
47         return this;
48     }
49
50     @Override
51     public int hashCode() {
52         final int prime = 31;
53         int result = 1;
54         result = prime * result + super.hashCode();
55         result = prime * result + ((subCategory == null) ? 0 : subCategory.hashCode());
56
57         return result;
58     }
59
60     @Override
61     public boolean equals(final Object obj) {
62         if (obj instanceof ResourceAssetInfo) {
63             final ResourceAssetInfo other = (ResourceAssetInfo) obj;
64             return super.equals(obj) && ObjectUtils.nullSafeEquals(subCategory, other.subCategory);
65
66         }
67         return false;
68     }
69
70     @Override
71     public String toString() {
72         final StringBuilder sb = new StringBuilder();
73         sb.append(super.toString());
74         sb.deleteCharAt(sb.length() - 1);
75         sb.append("    subCategory: ").append(subCategory).append("\n");
76
77         sb.append("}");
78         return sb.toString();
79     }
80
81 }