Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / adapter / vnfm / tasks / utils / VnfParameter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Ericsson. All rights reserved.
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.bpmn.infrastructure.adapter.vnfm.tasks.utils;
21
22 import java.util.Objects;
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 /**
26  * This is used to deserialize vnf-parameters from vnf-preload-list/{vnf-name}/{vnf-type} response
27  * 
28  * @author waqas.ikram@est.tech
29  */
30 public class VnfParameter {
31
32     @JsonProperty("vnf-parameter-name")
33     private String name;
34
35     @JsonProperty("vnf-parameter-value")
36     private String value;
37
38     /**
39      * @return the name
40      */
41     public String getName() {
42         return name;
43     }
44
45     /**
46      * @param name the name to set
47      */
48     public void setName(final String name) {
49         this.name = name;
50     }
51
52     /**
53      * @return the value
54      */
55     public String getValue() {
56         return value;
57     }
58
59     /**
60      * @param value the value to set
61      */
62     public void setValue(final String value) {
63         this.value = value;
64     }
65
66     @Override
67     public int hashCode() {
68         final int prime = 31;
69         int result = 1;
70         result = prime * result + ((name == null) ? 0 : name.hashCode());
71         result = prime * result + ((value == null) ? 0 : value.hashCode());
72         return Objects.hash(name, value);
73     }
74
75     @Override
76     public boolean equals(final Object obj) {
77         if (obj instanceof VnfParameter) {
78             VnfParameter other = (VnfParameter) obj;
79             return Objects.equals(name, other.name) && Objects.equals(value, other.value);
80         }
81
82         return false;
83     }
84
85     @Override
86     public String toString() {
87         return "VnfParameter [name=" + name + ", value=" + value + "]";
88     }
89
90 }