OSGI-INF.blueprint.notification-supplier.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" odl:use-default-for-reference-types="true"> <reference id="dataBroker" interface="org.opendaylight.mdsal.binding.api.DataBroker"/> <reference id="NotificationProviderService" interface="org.opendaylight.mdsal.binding.api.NotificationPublishService"/> <bean id="NotificationProvider" class="org.opendaylight.openflowplugin.applications.notification.supplier.NotificationProvider" init-method="start" destroy-method="close"> <argument ref="NotificationProviderService"/> <argument ref="dataBroker"/> <!-- Flow Support Flag, default is false --> <argument value="false"/> <!-- Meter Support Flag, default is true --> <argument value="true"/> <!-- Group Support Flag, default is true --> <argument value="true"/> <!-- Connector Stat Support Flag, default is false --> <argument value="false"/> <!-- Flow Stat Support Flag, default is false --> <argument value="false"/> <!-- Flow Table Stat Support Flag, default is false --> <argument value="false"/> <!-- Meter Stat Support Flag, default is false --> <argument value="false"/> <!-- Group Stat Support Flag, default is false --> <argument value="false"/> <!-- Queue Stat Support Flag, default is false --> <argument value="false"/> </bean> </blueprint>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy