summaryrefslogtreecommitdiffstats
path: root/filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml
diff options
context:
space:
mode:
authorRyan Goulding <ryandgoulding@gmail.com>2017-09-06 12:03:51 -0400
committerRyan Goulding <ryandgoulding@gmail.com>2017-09-06 12:04:45 -0400
commit4ca4e0d5b321d3f4f321b49df02498d66b547d11 (patch)
treef148f54336b2ecadaa5200d836eb1c4238c0540a /filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml
parentb6ad62d01b1045ff03c03aa05ee1beeaabc633c7 (diff)
Fix SDNC service registration
Convert the BundleActivator to a POJO provider, and do the service registration through blueprint instead. Issue-Id: SDNC-54 Change-Id: Ia5618ef443967803b31da1ac9e020d1092c3ab8d Signed-off-by: Ryan Goulding <ryandgoulding@gmail.com>
Diffstat (limited to 'filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml')
-rw-r--r--filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml b/filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml
new file mode 100644
index 00000000..3bf8423e
--- /dev/null
+++ b/filters/provider/src/main/resources/org/opendaylight/blueprint/filters-blueprint.xml
@@ -0,0 +1,9 @@
+<?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">
+
+ <bean id="filters" class="org.onap.ccsdk.sli.core.filters.FiltersServiceImpl" />
+ <service ref="filters" interface="org.onap.ccsdk.sli.core.filters.FiltersService" />
+
+</blueprint>