11e93e733d26dc92d767ee72151eacb66096dcc3
[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
24 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 /**
27  * This is used to deserialize vnf-parameters from vnf-preload-list/{vnf-name}/{vnf-type} response
28  * 
29  * @author waqas.ikram@est.tech
30  */
31 public class VnfParameter {
32
33     @JsonProperty("vnf-parameter-name")
34     private String name;
35
36     @JsonProperty("vnf-parameter-value")
37     private String value;
38
39     /**
40      * @return the name
41      */
42     public String getName() {
43         return name;
44     }
45
46     /**
47      * @param name the name to set
48      */
49     public void setName(final String name) {
50         this.name = name;
51     }
52
53     /**
54      * @return the value
55      */
56     public String getValue() {
57         return value;
58     }
59
60     /**
61      * @param value the value to set
62      */
63     public void setValue(final String value) {
64         this.value = value;
65     }
66
67     @Override
68     public int hashCode() {
69         final int prime = 31;
70         int result = 1;
71         result = prime * result + ((name == null) ? 0 : name.hashCode());
72         result = prime * result + ((value == null) ? 0 : value.hashCode());
73         return Objects.hash(name, value);
74     }
75
76     @Override
77     public boolean equals(final Object obj) {
78         if (obj instanceof VnfParameter) {
79             VnfParameter other = (VnfParameter) obj;
80             return Objects.equals(name, other.name) && Objects.equals(value, other.value);
81         }
82
83         return false;
84     }
85
86     @Override
87     public String toString() {
88         return "VnfParameter [name=" + name + ", value=" + value + "]";
89     }
90
91 }