5dafebd6bfe9a36c7760407404cce2ea8607ef0e
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / rest / ueb / NotificationEvent.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aai.rest.ueb;
21
22 import org.onap.aai.exceptions.AAIException;
23 import org.onap.aai.introspection.Introspector;
24 import org.onap.aai.introspection.Loader;
25 import org.onap.aai.setup.SchemaVersion;
26 import org.onap.aai.util.StoreNotificationEvent;
27
28 /**
29  * The Class NotificationEvent.
30  */
31 public class NotificationEvent {
32
33         private final Loader loader;
34         
35         private final Introspector eventHeader;
36         
37         private final Introspector obj;
38         private final String transactionId;
39         private final String sourceOfTruth;
40         /**
41          * Instantiates a new notification event.
42          *
43          * @param eventHeader the event header
44          * @param obj the obj
45          */
46         public NotificationEvent (Loader loader, Introspector eventHeader, Introspector obj, String transactionId, String sourceOfTruth) {
47                 this.loader = loader;
48                 this.eventHeader = eventHeader;
49                 this.obj = obj;
50                 this.transactionId = transactionId;
51                 this.sourceOfTruth = sourceOfTruth;
52         }
53         
54         /**
55          * Trigger.
56          *
57          * @throws AAIException the AAI exception
58          */
59         public void trigger() throws AAIException {
60                 
61                 StoreNotificationEvent sne = new StoreNotificationEvent(transactionId, sourceOfTruth);
62         
63                 sne.storeEvent(loader, eventHeader, obj);
64
65         }
66         
67         /**
68          * Gets the notification version.
69          *
70          * @return the notification version
71          */
72         public SchemaVersion getNotificationVersion() {
73                 return loader.getVersion();
74         }
75         
76         /**
77          * Gets the event header.
78          *
79          * @return the event header
80          */
81         public Introspector getEventHeader() {
82                 return eventHeader;
83         }
84         
85         /**
86          * Gets the obj.
87          *
88          * @return the obj
89          */
90         public Introspector getObj() {
91                 return obj;
92         }
93         
94         
95         
96         
97 }