429f952d70e5321180b572c09c4ee923ed643448
[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 package org.onap.usecaseui.intentanalysis.adapters.policy.dmaap;
17
18 import com.google.gson.Gson;
19 import java.util.ArrayList;
20 import java.util.List;
21 import org.onap.usecaseui.intentanalysis.adapters.dmaap.NotificationCallback;
22 import org.onap.usecaseui.intentanalysis.adapters.dmaap.NotificationEventModel;
23 import org.onap.usecaseui.intentanalysis.bean.enums.FulfillmentStatus;
24 import org.onap.usecaseui.intentanalysis.bean.enums.NotFulfilledState;
25 import org.onap.usecaseui.intentanalysis.bean.models.FulfillmentOperation;
26 import org.onap.usecaseui.intentanalysis.service.ComponentNotificationService;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.beans.factory.annotation.Autowired;
30
31 public class PolicyNotificationCallback implements NotificationCallback {
32
33     private static final Logger logger = LoggerFactory.getLogger(PolicyNotificationCallback.class);
34
35     @Autowired
36     ComponentNotificationService componentNotificationService;
37
38     @Override
39     public void activateCallBack(String msg) {
40         logger.info("Received event from Policy: \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 }