Fix Spike Event Processing with Common Format
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / entity / SpikeEventMeta.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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
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 package org.onap.aai.datarouter.entity;
22
23 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
24 import org.json.JSONObject;
25
26 public class SpikeEventMeta {
27
28   private JSONObject eventEntity;
29   private JSONObject eventHeader;
30   private JSONObject eventBody;
31   private JSONObject spikeVertex;
32   private JSONObject vertexProperties;
33   private SpikeEventVertex spikeEventVertex;
34   private DynamicJAXBContext oxmJaxbContext;
35   private String bodyOperationType;
36
37   public JSONObject getEventEntity() {
38     return eventEntity;
39   }
40
41   public void setEventEntity(JSONObject eventEntity) {
42     this.eventEntity = eventEntity;
43   }
44
45   public JSONObject getEventHeader() {
46     return eventHeader;
47   }
48
49   public void setEventHeader(JSONObject eventHeader) {
50     this.eventHeader = eventHeader;
51   }
52
53   public JSONObject getEventBody() {
54     return eventBody;
55   }
56
57   public void setEventBody(JSONObject eventBody) {
58     this.eventBody = eventBody;
59   }
60
61   public JSONObject getSpikeVertex() {
62     return spikeVertex;
63   }
64
65   public void setSpikeVertex(JSONObject spikeVertex) {
66     this.spikeVertex = spikeVertex;
67   }
68
69   public JSONObject getVertexProperties() {
70     return vertexProperties;
71   }
72
73   public void setVertexProperties(JSONObject vertexProperties) {
74     this.vertexProperties = vertexProperties;
75   }
76
77   public SpikeEventVertex getSpikeEventVertex() {
78     return spikeEventVertex;
79   }
80
81   public void setSpikeEventVertex(SpikeEventVertex spikeEventVertex) {
82     this.spikeEventVertex = spikeEventVertex;
83   }
84
85   public DynamicJAXBContext getOxmJaxbContext() {
86     return oxmJaxbContext;
87   }
88
89   public void setOxmJaxbContext(DynamicJAXBContext oxmJaxbContext) {
90     this.oxmJaxbContext = oxmJaxbContext;
91   }
92
93   public String getBodyOperationType() {
94     return bodyOperationType;
95   }
96
97   public void setBodyOperationType(String bodyOperationType) {
98     this.bodyOperationType = bodyOperationType;
99   }
100   
101   
102   
103
104 }