Feature for micro service communication
[appc.git] / appc-service-communicator / appc-service-communicator-bundle / src / main / java / org / onap / appc / srvcomm / messaging / event / EventMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2019 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.srvcomm.messaging.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 import java.io.IOException;
32 import java.io.Serializable;
33
34 /*
35     {
36         "EventHeader": {
37         "eventTime": "2016-03-15T10:59:33.79Z",
38         "apiVer": "1.01",
39         "EventId": "<ECOMP_EVENT_ID>",
40     },
41         "EventStatus": {
42             "code": "NNN",
43             "reason": "A reason"
44         }
45     }
46 */
47
48
49 @JsonSerialize(include = Inclusion.NON_NULL)
50 @JsonIgnoreProperties(ignoreUnknown = true)
51 public class EventMessage implements Serializable {
52
53     private static final long serialVersionUID = 1L;
54
55     private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
56
57     @JsonProperty("eventHeader")
58     private EventHeader eventHeader;
59     @JsonProperty("eventStatus")
60     private EventStatus eventStatus;
61
62     public EventMessage(EventHeader eventHeader, EventStatus eventStatus) {
63         this.eventHeader = eventHeader;
64         this.eventStatus = eventStatus;
65     }
66
67     public EventHeader getEventHeader() {
68         return eventHeader;
69     }
70
71     public void setEventHeader(EventHeader eventHeader) {
72         this.eventHeader = eventHeader;
73     }
74
75     public EventStatus getEventStatus() {
76         return eventStatus;
77     }
78
79     public void setEventStatus(EventStatus eventStatus) {
80         this.eventStatus = eventStatus;
81     }
82
83     public String toJson() {
84         try {
85             return OBJECT_MAPPER.writeValueAsString(this);
86         } catch (IOException e) {
87             throw new RuntimeException(e);
88         }
89     }
90
91     @Override
92     public String toString() {
93         return "EventMessage{" +
94                 "eventHeader=" + eventHeader +
95                 ", eventStatus=" + eventStatus +
96                 '}';
97     }
98 }