Added UniversalVesAdapter in the Mapper
[dcaegen2/services/mapper.git] / UniversalVesAdapter / src / main / java / org / onap / dcaegen2 / ves / domain / ArrayOfField_.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : DCAE
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 package org.onap.dcaegen2.ves.domain;
21
22 import java.util.HashMap;
23 import java.util.Map;
24 import com.fasterxml.jackson.annotation.JsonAnyGetter;
25 import com.fasterxml.jackson.annotation.JsonAnySetter;
26 import com.fasterxml.jackson.annotation.JsonIgnore;
27 import com.fasterxml.jackson.annotation.JsonInclude;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
30 import org.apache.commons.lang.builder.EqualsBuilder;
31 import org.apache.commons.lang.builder.HashCodeBuilder;
32 import org.apache.commons.lang.builder.ToStringBuilder;
33
34 @JsonInclude(JsonInclude.Include.NON_NULL)
35 @JsonPropertyOrder({
36     "name",
37     "value"
38 })
39 public class ArrayOfField_ {
40
41     @JsonProperty("name")
42     private String name;
43     @JsonProperty("value")
44     private String value;
45     @JsonIgnore
46     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
47
48     @JsonProperty("name")
49     public String getName() {
50         return name;
51     }
52
53     @JsonProperty("name")
54     public void setName(String name) {
55         this.name = name;
56     }
57
58     @JsonProperty("value")
59     public String getValue() {
60         return value;
61     }
62
63     @JsonProperty("value")
64     public void setValue(String value) {
65         this.value = value;
66     }
67
68     @JsonAnyGetter
69     public Map<String, Object> getAdditionalProperties() {
70         return this.additionalProperties;
71     }
72
73     @JsonAnySetter
74     public void setAdditionalProperty(String name, Object value) {
75         this.additionalProperties.put(name, value);
76     }
77
78     @Override
79     public String toString() {
80         return new ToStringBuilder(this).append("name", name).append("value", value).append("additionalProperties", additionalProperties).toString();
81     }
82
83     @Override
84     public int hashCode() {
85         return new HashCodeBuilder().append(additionalProperties).append(name).append(value).toHashCode();
86     }
87
88     @Override
89     public boolean equals(Object other) {
90         if (other == this) {
91             return true;
92         }
93         if ((other instanceof ArrayOfField_) == false) {
94             return false;
95         }
96         ArrayOfField_ rhs = ((ArrayOfField_) other);
97         return new EqualsBuilder().append(additionalProperties, rhs.additionalProperties).append(name, rhs.name).append(value, rhs.value).isEquals();
98     }
99
100 }