Class MeterStatNotificationSupplierImpl
- java.lang.Object
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.AbstractNotificationSupplierBase<O>
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.stat.AbstractNotificationSupplierForItemStat<MeterStatistics,MeterStatisticsUpdated>
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.stat.MeterStatNotificationSupplierImpl
-
- All Implemented Interfaces:
AutoCloseable
,EventListener
,org.opendaylight.mdsal.binding.api.DataTreeChangeListener<MeterStatistics>
,NotificationSupplierDefinition<MeterStatistics>
,NotificationSupplierForItemStat<MeterStatistics,MeterStatisticsUpdated>
public class MeterStatNotificationSupplierImpl extends AbstractNotificationSupplierForItemStat<MeterStatistics,MeterStatisticsUpdated>
Implementation define a contract betweenMeterStatistics
data object andMeterStatisticsUpdated
notification.
-
-
Field Summary
-
Fields inherited from class org.opendaylight.openflowplugin.applications.notification.supplier.impl.AbstractNotificationSupplierBase
clazz
-
-
Constructor Summary
Constructors Constructor Description MeterStatNotificationSupplierImpl(org.opendaylight.mdsal.binding.api.NotificationPublishService notifProviderService, org.opendaylight.mdsal.binding.api.DataBroker db)
Constructor register supplier as DataTreeChangeListener and create wildCarded InstanceIdentifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MeterStatisticsUpdated
createNotification(MeterStatistics meterStatistics, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<MeterStatistics> path)
Method produces relevant Statistics kind ofNotification
from statistics data tree item identified byInstanceIdentifier
path.org.opendaylight.yangtools.yang.binding.InstanceIdentifier<MeterStatistics>
getWildCardPath()
Method return wildCardPath for Listener registration and for identify the correct KeyInstanceIdentifier from Data Tree Item in DataStore.-
Methods inherited from class org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.stat.AbstractNotificationSupplierForItemStat
add, onDataTreeChanged, remove, update
-
Methods inherited from class org.opendaylight.openflowplugin.applications.notification.supplier.impl.AbstractNotificationSupplierBase
close, createNodeRef, getNodeId, getNodeII, getNodeWildII
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Constructor Detail
-
MeterStatNotificationSupplierImpl
public MeterStatNotificationSupplierImpl(org.opendaylight.mdsal.binding.api.NotificationPublishService notifProviderService, org.opendaylight.mdsal.binding.api.DataBroker db)
Constructor register supplier as DataTreeChangeListener and create wildCarded InstanceIdentifier.- Parameters:
notifProviderService
- -NotificationPublishService
db
- -DataBroker
-
-
Method Detail
-
getWildCardPath
public org.opendaylight.yangtools.yang.binding.InstanceIdentifier<MeterStatistics> getWildCardPath()
Description copied from interface:NotificationSupplierDefinition
Method return wildCardPath for Listener registration and for identify the correct KeyInstanceIdentifier from Data Tree Item in DataStore.- Returns:
InstanceIdentifier
-
createNotification
public MeterStatisticsUpdated createNotification(MeterStatistics meterStatistics, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<MeterStatistics> path)
Description copied from interface:NotificationSupplierForItemStat
Method produces relevant Statistics kind ofNotification
from statistics data tree item identified byInstanceIdentifier
path.- Parameters:
meterStatistics
- - Statistics Data Tree Itempath
- - Identifier of Data Tree Item- Returns:
Notification
- relevant API contract Notification
-
-