summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml
diff options
context:
space:
mode:
authorMichael Dürre <michael.duerre@highstreet-technologies.com>2020-01-30 12:30:58 +0100
committerKAPIL SINGAL <ks220y@att.com>2020-01-31 20:58:11 +0000
commitfb121a32b8b3431e37d2b73a63aac8055983f8f2 (patch)
tree1674d0395da57f4a92531f3d35508c58ff904f60 /sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml
parent84cf604e3f06942a62ae0478327ec6100787761e (diff)
update apigateway
removed unused code and services Issue-ID: SDNC-1027 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: Ia126ed7fcc18331858c502409384cbc0570d6be7
Diffstat (limited to 'sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml')
-rw-r--r--sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml b/sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml
new file mode 100644
index 000000000..8184d7d11
--- /dev/null
+++ b/sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs">
+
+ <bean id="aaiServlet"
+ class="org.onap.ccsdk.features.sdnr.wt.apigateway.AaiServlet">
+ </bean>
+
+ <service interface="javax.servlet.http.HttpServlet" ref="aaiServlet">
+ <service-properties>
+ <entry key="alias" value="/aai" />
+ </service-properties>
+ </service>
+
+ <bean id="esServlet"
+ class="org.onap.ccsdk.features.sdnr.wt.apigateway.EsServlet">
+ </bean>
+
+ <service interface="javax.servlet.http.HttpServlet" ref="esServlet">
+ <service-properties>
+ <entry key="alias" value="/database" />
+ </service-properties>
+ </service>
+
+</blueprint>