Class MeterNotificationSupplierImpl
- java.lang.Object
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.AbstractNotificationSupplierBase<O>
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.AbstractNotificationSupplierForItem<Meter,MeterAdded,MeterUpdated,MeterRemoved>
-
- org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.MeterNotificationSupplierImpl
-
- All Implemented Interfaces:
AutoCloseable
,EventListener
,org.opendaylight.mdsal.binding.api.DataTreeChangeListener<Meter>
,NotificationSupplierDefinition<Meter>
,NotificationSupplierForItem<Meter,MeterAdded,MeterUpdated,MeterRemoved>
public class MeterNotificationSupplierImpl extends AbstractNotificationSupplierForItem<Meter,MeterAdded,MeterUpdated,MeterRemoved>
Implementation define a contract betweenMeter
data object andMeterAdded
,MeterUpdated
andMeterRemoved
notifications.
-
-
Field Summary
-
Fields inherited from class org.opendaylight.openflowplugin.applications.notification.supplier.impl.AbstractNotificationSupplierBase
clazz
-
-
Constructor Summary
Constructors Constructor Description MeterNotificationSupplierImpl(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 MeterAdded
createNotification(Meter dataTreeItemObject, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Method produces relevant addItem kind ofNotification
from data tree item identified byInstanceIdentifier
path.MeterRemoved
deleteNotification(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Method produces relevant deleteItem kind ofNotification
from pathInstanceIdentifier
to deleted item.org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter>
getWildCardPath()
Method return wildCardPath for Listener registration and for identify the correct KeyInstanceIdentifier from Data Tree Item in DataStore.MeterUpdated
updateNotification(Meter meter, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Method produces relevant updateItem kind ofNotification
from data tree item identified byInstanceIdentifier
path.-
Methods inherited from class org.opendaylight.openflowplugin.applications.notification.supplier.impl.item.AbstractNotificationSupplierForItem
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
-
MeterNotificationSupplierImpl
public MeterNotificationSupplierImpl(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<Meter> 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 MeterAdded createNotification(Meter dataTreeItemObject, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Description copied from interface:NotificationSupplierForItem
Method produces relevant addItem kind ofNotification
from data tree item identified byInstanceIdentifier
path.- Parameters:
dataTreeItemObject
- - Data Tree Item objectpath
- - Identifier of Data Tree Item- Returns:
Notification
- relevant API contract Notification
-
updateNotification
public MeterUpdated updateNotification(Meter meter, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Description copied from interface:NotificationSupplierForItem
Method produces relevant updateItem kind ofNotification
from data tree item identified byInstanceIdentifier
path.- Parameters:
meter
- - Data Tree Item objectpath
- - Identifier of Data Tree Item- Returns:
Notification
- relevant API contract Notification
-
deleteNotification
public MeterRemoved deleteNotification(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Meter> path)
Description copied from interface:NotificationSupplierForItem
Method produces relevant deleteItem kind ofNotification
from pathInstanceIdentifier
to deleted item.- Parameters:
path
- - Identifier of Data Tree Item- Returns:
Notification
- relevant API contract Notification
-
-