2 * ============LICENSE_START=======================================================
3 * ONAP : ccsdk feature sdnr wt
4 * ================================================================================
5 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.interfaces;
24 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
25 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
26 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.AirInterface20Listener;
27 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.AttributeValueChangedNotification;
28 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectCreationNotification;
29 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectDeletionNotification;
30 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ProblemNotification;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.EventlogBuilder;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.SourceType;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
36 public class Onf14AirInterfaceNotificationListener implements AirInterface20Listener {
38 private static final Logger log = LoggerFactory.getLogger(Onf14AirInterfaceNotificationListener.class);
40 private final NetconfAccessor netconfAccessor;
41 private final DeviceManagerServiceProvider serviceProvider;
43 public Onf14AirInterfaceNotificationListener(NetconfAccessor netconfAccessor,
44 DeviceManagerServiceProvider serviceProvider) {
45 this.netconfAccessor = netconfAccessor;
46 this.serviceProvider = serviceProvider;
50 public void onObjectDeletionNotification(ObjectDeletionNotification notification) {
51 log.debug("Got event of type :: {}", ObjectDeletionNotification.class.getSimpleName());
53 EventlogBuilder eventlogBuilder = new EventlogBuilder();
54 eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName("")
55 .setCounter(notification.getCounter()).setNewValue("deleted")
56 .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
57 .setTimestamp(notification.getTimestamp());
58 serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
59 serviceProvider.getNotificationService().deletionNotification(netconfAccessor.getNodeId(),
60 notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
62 log.debug("onObjectDeletionNotification log entry written");
66 public void onProblemNotification(ProblemNotification notification) {
67 log.debug("Got event of type :: {}", ProblemNotification.class.getSimpleName());
69 serviceProvider.getFaultService().faultNotification(netconfAccessor.getNodeId(), notification.getCounter(),
70 notification.getTimestamp(), notification.getObjectIdRef().getValue(), notification.getProblem(),
71 Onf14AirInterface.mapSeverity(notification.getSeverity()));
76 public void onAttributeValueChangedNotification(AttributeValueChangedNotification notification) {
77 log.debug("Got event of type :: {}", AttributeValueChangedNotification.class.getSimpleName());
79 EventlogBuilder eventlogBuilder = new EventlogBuilder();
80 eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
81 .setAttributeName(notification.getAttributeName()).setCounter(notification.getCounter())
82 .setNewValue(notification.getNewValue()).setObjectId(notification.getObjectIdRef().getValue())
83 .setSourceType(SourceType.Netconf).setTimestamp(notification.getTimestamp());
84 serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
85 serviceProvider.getNotificationService().eventNotification(eventlogBuilder.build());
87 log.debug("onAttributeValueChangedNotification log entry written");
91 public void onObjectCreationNotification(ObjectCreationNotification notification) {
92 log.debug("Got event of type :: {}", ObjectCreationNotification.class.getSimpleName());
94 EventlogBuilder eventlogBuilder = new EventlogBuilder();
95 eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName(notification.getObjectType())
96 .setCounter(notification.getCounter()).setNewValue("created")
97 .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
98 .setTimestamp(notification.getTimestamp());
99 serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
100 serviceProvider.getNotificationService().creationNotification(netconfAccessor.getNodeId(),
101 notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
103 log.debug("onObjectCreationNotification log entry written");