717c179292a3861c4a19095ce6b012edaefb0298
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-api / src / main / java / org / onap / appc / adapter / message / event / EventMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.adapter.message.event;
25
26 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.databind.ObjectMapper;
29 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
30 import com.fasterxml.jackson.databind.annotation.JsonSerialize.Inclusion;
31
32 import java.io.IOException;
33 import java.io.Serializable;
34
35 /*
36     {
37         "EventHeader": {
38         "eventTime": "2016-03-15T10:59:33.79Z",
39         "apiVer": "1.01",
40         "EventId": "<ECOMP_EVENT_ID>",
41     },
42         "EventStatus": {
43             "code": "NNN",
44             "reason": "A reason"
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 }