3c387a1de2ad0906ec9af7111267f658e0bbcd54
[usecase-ui/intent-analysis.git] /
1 /*
2  * Copyright 2023 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.usecaseui.intentanalysis.adapters.dcae.dmaap;
18
19 import com.google.gson.Gson;
20 import java.util.ArrayList;
21 import java.util.List;
22 import org.onap.usecaseui.intentanalysis.adapters.dmaap.NotificationCallback;
23 import org.onap.usecaseui.intentanalysis.adapters.dmaap.NotificationEventModel;
24 import org.onap.usecaseui.intentanalysis.bean.enums.FulfillmentStatus;
25 import org.onap.usecaseui.intentanalysis.bean.enums.NotFulfilledState;
26 import org.onap.usecaseui.intentanalysis.bean.models.FulfillmentOperation;
27 import org.onap.usecaseui.intentanalysis.service.ComponentNotificationService;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.beans.factory.annotation.Autowired;
31
32 public class DCAENotificationCallback implements NotificationCallback {
33     private static final Logger logger = LoggerFactory.getLogger(DCAENotificationCallback.class);
34
35     @Autowired
36     ComponentNotificationService componentNotificationService;
37
38     @Override
39     public void activateCallBack(String msg) {
40         logger.info("Received event from DCAE: \n" + msg);
41         NotificationEventModel event = (new Gson()).fromJson(msg, NotificationEventModel.class);
42         FulfillmentOperation info = new FulfillmentOperation();
43         info.setOperation(event.getEntity().getOperation());
44         info.setFulfillmentStatus(FulfillmentStatus.NOT_FULFILLED);
45         List<String> instances = new ArrayList<>();
46         instances.add(event.getEntity().getId());
47         info.setObjectInstances(instances);
48         info.setNotFulfilledState(NotFulfilledState.FULFILMENTFAILED);
49         info.setNotFulfilledReason(event.getEntity().getReason());
50         componentNotificationService.callBack(info);
51     }
52 }