Moving all files to root directory
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-bundle / src / main / java / org / openecomp / appc / adapter / dmaap / event / EventMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.adapter.dmaap.event;
23
24 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.databind.ObjectMapper;
27 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
28 import com.fasterxml.jackson.databind.annotation.JsonSerialize.Inclusion;
29
30 import java.io.IOException;
31 import java.io.Serializable;
32
33 /*
34     {
35         "EventHeader": {
36         "eventTime": "2016-03-15T10:59:33.79Z",
37         "apiVer": "1.01",
38         "EventId": "<ECOMP_EVENT_ID>",
39     },
40         "EventStatus": {
41             "code": "NNN",
42             "reason": "A reason"
43         }
44     }
45 */
46
47
48
49
50 @JsonSerialize(include = Inclusion.NON_NULL)
51 @JsonIgnoreProperties(ignoreUnknown = true)
52 public class EventMessage implements Serializable {
53
54     private static final long serialVersionUID = 1L;
55
56     private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
57
58     @JsonProperty("eventHeader")
59     private EventHeader eventHeader;
60     @JsonProperty("eventStatus")
61     private EventStatus eventStatus;
62
63     public EventMessage(EventHeader eventHeader, EventStatus eventStatus) {
64         this.eventHeader = eventHeader;
65         this.eventStatus = eventStatus;
66     }
67
68     public EventHeader getEventHeader() {
69         return eventHeader;
70     }
71
72     public void setEventHeader(EventHeader eventHeader) {
73         this.eventHeader = eventHeader;
74     }
75
76     public EventStatus getEventStatus() {
77         return eventStatus;
78     }
79
80     public void setEventStatus(EventStatus eventStatus) {
81         this.eventStatus = eventStatus;
82     }
83
84     public String toJson() {
85         try {
86             return OBJECT_MAPPER.writeValueAsString(this);
87         } catch (IOException e) {
88             throw new RuntimeException(e);
89         }
90     }
91
92     @Override
93     public String toString() {
94         return "EventMessage{" +
95                 "eventHeader=" + eventHeader +
96                 ", eventStatus=" + eventStatus +
97                 '}';
98     }
99 }