2 * ============LICENSE_START=======================================================
3 * Copyright (c) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.cps.ncmp.impl.cmnotificationsubscription.cmavc;
23 import io.cloudevents.CloudEvent;
24 import io.micrometer.core.annotation.Timed;
25 import lombok.RequiredArgsConstructor;
26 import lombok.extern.slf4j.Slf4j;
27 import org.apache.kafka.clients.consumer.ConsumerRecord;
28 import org.onap.cps.events.EventsProducer;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
31 import org.springframework.kafka.annotation.KafkaListener;
32 import org.springframework.stereotype.Component;
35 * Listener for AVC events based on CM Subscriptions.
39 @RequiredArgsConstructor
40 @ConditionalOnProperty(name = "notification.enabled", havingValue = "true", matchIfMissing = true)
41 public class CmAvcEventConsumer {
44 @Value("${app.ncmp.avc.cm-events-topic}")
45 private String cmEventsTopicName;
47 private final EventsProducer<CloudEvent> eventsProducer;
50 * Incoming Cm AvcEvent in the form of Consumer Record, it will be forwarded as is to a target topic.
51 * The key from incoming record will be used as key for the target topic as well to preserve the message ordering.
53 * @param cmAvcEventAsConsumerRecord Incoming raw consumer record
55 @KafkaListener(topics = "${app.dmi.cm-events.topic}",
56 containerFactory = "cloudEventConcurrentKafkaListenerContainerFactory")
57 @Timed(value = "cps.ncmp.cmnotifications.consumeandforward", description = "Time taken to forward CM AVC events")
58 public void consumeAndForward(
59 final ConsumerRecord<String, CloudEvent> cmAvcEventAsConsumerRecord) {
60 final CloudEvent outgoingAvcEvent = cmAvcEventAsConsumerRecord.value();
61 final String outgoingAvcEventKey = cmAvcEventAsConsumerRecord.key();
62 log.debug("Consuming AVC event with key : {} and value : {}", outgoingAvcEventKey, outgoingAvcEvent);
63 eventsProducer.sendCloudEvent(cmEventsTopicName, outgoingAvcEventKey, outgoingAvcEvent);