Containerization feature of SO
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / client / ASDCNotificationCallBack.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 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
21 package org.onap.so.asdc.client;
22
23 import org.onap.sdc.api.consumer.INotificationCallback;
24 import org.onap.sdc.api.notification.INotificationData;
25 import org.onap.so.logger.MsoLogger;
26 import org.onap.so.utils.UUIDChecker;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.stereotype.Component;
29
30 /**
31  * Inner class for Notification callback
32  *
33  *
34  */
35 @Component
36 public final class ASDCNotificationCallBack implements INotificationCallback {
37
38         @Autowired
39     private ASDCController asdcController;
40     
41     protected static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.ASDC,ASDCNotificationCallBack.class);
42
43     /**
44      * This method can be called multiple times at the same moment.
45      * The controller must be thread safe !
46      */
47     @Override
48     public void activateCallback (INotificationData iNotif) {
49         long startTime = System.currentTimeMillis ();
50         UUIDChecker.generateUUID (LOGGER);
51         MsoLogger.setServiceName ("NotificationHandler");
52         MsoLogger.setLogContext (iNotif.getDistributionID (), iNotif.getServiceUUID ());
53         String event = "Receive a callback notification in ASDC, nb of resources: " + iNotif.getResources ().size ();
54         LOGGER.debug(event);
55         asdcController.treatNotification (iNotif);
56         LOGGER.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Completed the treatment of the notification");
57     }
58 }