00678fb9e18867cc0b90729ef96d06c1e859dcb7
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.rest.ueb;
23
24 import org.onap.aai.exceptions.AAIException;
25 import org.onap.aai.introspection.Introspector;
26 import org.onap.aai.introspection.Loader;
27 import org.onap.aai.introspection.Version;
28 import org.onap.aai.util.StoreNotificationEvent;
29
30 /**
31  * The Class NotificationEvent.
32  */
33 public class NotificationEvent {
34
35         private final Loader loader;
36         
37         private final Introspector eventHeader;
38         
39         private final Introspector obj;
40         private final String transactionId;
41         private final String sourceOfTruth;
42         /**
43          * Instantiates a new notification event.
44          *
45          * @param version the version
46          * @param eventHeader the event header
47          * @param obj the obj
48          */
49         public NotificationEvent (Loader loader, Introspector eventHeader, Introspector obj, String transactionId, 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.storeEvent(loader, eventHeader, obj);
67
68         }
69         
70         /**
71          * Gets the notification version.
72          *
73          * @return the notification version
74          */
75         public Version getNotificationVersion() {
76                 return loader.getVersion();
77         }
78         
79         /**
80          * Gets the event header.
81          *
82          * @return the event header
83          */
84         public Introspector getEventHeader() {
85                 return eventHeader;
86         }
87         
88         /**
89          * Gets the obj.
90          *
91          * @return the obj
92          */
93         public Introspector getObj() {
94                 return obj;
95         }
96         
97         
98         
99         
100 }