Added UniversalVesAdapter in the Mapper
[dcaegen2/services/mapper.git] / UniversalVesAdapter / src / main / java / org / onap / dcaegen2 / ves / domain / AdditionalField.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
31
32 @JsonInclude(JsonInclude.Include.NON_NULL)
33 @JsonPropertyOrder({
34     "name",
35     "value"
36 })
37 public class AdditionalField {
38         
39     @JsonProperty("name")
40     private String name;
41     @JsonProperty("value")
42     private String value;
43     @JsonIgnore
44     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
45
46     @JsonProperty("name")
47     public String getName() {
48         return name;
49     }
50
51     @JsonProperty("name")
52     public void setName(String name) {
53         this.name = name;
54     }
55
56     @JsonProperty("value")
57     public String getValue() {
58         return value;
59     }
60
61     @JsonProperty("value")
62     public void setValue(String value) {
63         this.value = value;
64     }
65
66     @JsonAnyGetter
67     public Map<String, Object> getAdditionalProperties() {
68         return this.additionalProperties;
69     }
70
71     @JsonAnySetter
72     public void setAdditionalProperty(String name, Object value) {
73         this.additionalProperties.put(name, value);
74     }
75
76     
77 }