Merge "[AAI] Fix doc config files"
[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
21 package org.onap.aai.rest.ueb;
22
23 import org.onap.aai.exceptions.AAIException;
24 import org.onap.aai.introspection.Introspector;
25 import org.onap.aai.introspection.Loader;
26 import org.onap.aai.setup.SchemaVersion;
27 import org.onap.aai.util.StoreNotificationEvent;
28
29 /**
30  * The Class NotificationEvent.
31  */
32 public class NotificationEvent {
33
34     private final Loader loader;
35
36     private final Introspector eventHeader;
37
38     private final Introspector obj;
39     private final String transactionId;
40     private final String sourceOfTruth;
41
42     /**
43      * Instantiates a new notification event.
44      *
45      * @param eventHeader the event header
46      * @param obj the obj
47      */
48     public NotificationEvent(Loader loader, Introspector eventHeader, Introspector obj, String transactionId,
49             String sourceOfTruth) {
50         this.loader = loader;
51         this.eventHeader = eventHeader;
52         this.obj = obj;
53         this.transactionId = transactionId;
54         this.sourceOfTruth = sourceOfTruth;
55     }
56
57     /**
58      * Trigger.
59      *
60      * @throws AAIException the AAI exception
61      */
62     public void trigger() throws AAIException {
63
64         StoreNotificationEvent sne = new StoreNotificationEvent(transactionId, sourceOfTruth);
65
66         sne.storeEventAndSendToJms(loader, eventHeader, obj);
67
68     }
69
70     public String getNotificationEvent() throws AAIException {
71         return new StoreNotificationEvent(transactionId, sourceOfTruth).storeEventOnly(loader, eventHeader, obj);
72     }
73
74     /**
75      * Gets the notification version.
76      *
77      * @return the notification version
78      */
79     public SchemaVersion getNotificationVersion() {
80         return loader.getVersion();
81     }
82
83     /**
84      * Gets the event header.
85      *
86      * @return the event header
87      */
88     public Introspector getEventHeader() {
89         return eventHeader;
90     }
91
92     /**
93      * Gets the obj.
94      *
95      * @return the obj
96      */
97     public Introspector getObj() {
98         return obj;
99     }
100
101 }