summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/apigateway/provider/src/main/resources/org/opendaylight/blueprint/blueprint.xml
blob: 8184d7d11a38abee0b5dc19d4df966d09a16754f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>