Changed to unmaintained
[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.JsonInclude;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29 import com.fasterxml.jackson.databind.ObjectMapper;
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 @JsonInclude(JsonInclude.Include.NON_NULL)
48 @JsonIgnoreProperties(ignoreUnknown = true)
49 public class EventMessage implements Serializable {
50
51     private static final long serialVersionUID = 1L;
52
53     private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
54
55     @JsonProperty("eventHeader")
56     private EventHeader eventHeader;
57     @JsonProperty("eventStatus")
58     private EventStatus eventStatus;
59
60     public EventMessage(EventHeader eventHeader, EventStatus eventStatus) {
61         this.eventHeader = eventHeader;
62         this.eventStatus = eventStatus;
63     }
64
65     public EventHeader getEventHeader() {
66         return eventHeader;
67     }
68
69     public void setEventHeader(EventHeader eventHeader) {
70         this.eventHeader = eventHeader;
71     }
72
73     public EventStatus getEventStatus() {
74         return eventStatus;
75     }
76
77     public void setEventStatus(EventStatus eventStatus) {
78         this.eventStatus = eventStatus;
79     }
80
81     public String toJson() {
82         try {
83             return OBJECT_MAPPER.writeValueAsString(this);
84         } catch (IOException e) {
85             throw new RuntimeException(e);
86         }
87     }
88
89     @Override
90     public String toString() {
91         return "EventMessage{" +
92                 "eventHeader=" + eventHeader +
93                 ", eventStatus=" + eventStatus +
94                 '}';
95     }
96 }