Merge of new rebased code
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-api / src / main / java / org / openecomp / appc / adapter / message / 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.message.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 @JsonSerialize(include = Inclusion.NON_NULL)
49 @JsonIgnoreProperties(ignoreUnknown = true)
50 public class EventMessage implements Serializable {
51
52     private static final long serialVersionUID = 1L;
53
54     private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
55
56     @JsonProperty("eventHeader")
57     private EventHeader eventHeader;
58     @JsonProperty("eventStatus")
59     private EventStatus eventStatus;
60
61     public EventMessage(EventHeader eventHeader, EventStatus eventStatus) {
62         this.eventHeader = eventHeader;
63         this.eventStatus = eventStatus;
64     }
65
66     public EventHeader getEventHeader() {
67         return eventHeader;
68     }
69
70     public void setEventHeader(EventHeader eventHeader) {
71         this.eventHeader = eventHeader;
72     }
73
74     public EventStatus getEventStatus() {
75         return eventStatus;
76     }
77
78     public void setEventStatus(EventStatus eventStatus) {
79         this.eventStatus = eventStatus;
80     }
81
82     public String toJson() {
83         try {
84             return OBJECT_MAPPER.writeValueAsString(this);
85         } catch (IOException e) {
86             throw new RuntimeException(e);
87         }
88     }
89
90     @Override
91     public String toString() {
92         return "EventMessage{" +
93                 "eventHeader=" + eventHeader +
94                 ", eventStatus=" + eventStatus +
95                 '}';
96     }
97 }