Added UniversalVesAdapter in the Mapper
[dcaegen2/services/mapper.git] / UniversalVesAdapter / src / main / java / org / onap / dcaegen2 / ves / domain / VesEvent.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     "event"
35 })
36 public class VesEvent {
37
38     @JsonProperty("event")
39     private Event event;
40     @JsonIgnore
41     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
42
43     @JsonProperty("event")
44     public Event getEvent() {
45         return event;
46     }
47
48     @JsonProperty("event")
49     public void setEvent(Event event) {
50         this.event = event;
51     }
52
53     @JsonAnyGetter
54     public Map<String, Object> getAdditionalProperties() {
55         return this.additionalProperties;
56     }
57
58     @JsonAnySetter
59     public void setAdditionalProperty(String name, Object value) {
60         this.additionalProperties.put(name, value);
61     }
62
63    
64
65 }