2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright (C) 2017 Amdocs
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 package org.openecomp.appc.adapter.message.event;
25 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
29 import com.fasterxml.jackson.databind.annotation.JsonSerialize.Inclusion;
31 import java.io.IOException;
32 import java.io.Serializable;
37 "eventTime": "2016-03-15T10:59:33.79Z",
39 "EventId": "<ECOMP_EVENT_ID>",
49 @JsonSerialize(include = Inclusion.NON_NULL)
50 @JsonIgnoreProperties(ignoreUnknown = true)
51 public class EventMessage implements Serializable {
53 private static final long serialVersionUID = 1L;
55 private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
57 @JsonProperty("eventHeader")
58 private EventHeader eventHeader;
59 @JsonProperty("eventStatus")
60 private EventStatus eventStatus;
62 public EventMessage(EventHeader eventHeader, EventStatus eventStatus) {
63 this.eventHeader = eventHeader;
64 this.eventStatus = eventStatus;
67 public EventHeader getEventHeader() {
71 public void setEventHeader(EventHeader eventHeader) {
72 this.eventHeader = eventHeader;
75 public EventStatus getEventStatus() {
79 public void setEventStatus(EventStatus eventStatus) {
80 this.eventStatus = eventStatus;
83 public String toJson() {
85 return OBJECT_MAPPER.writeValueAsString(this);
86 } catch (IOException e) {
87 throw new RuntimeException(e);
92 public String toString() {
93 return "EventMessage{" +
94 "eventHeader=" + eventHeader +
95 ", eventStatus=" + eventStatus +