Fix NPE when trying to download restconf provided yang files
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / resources / org / opendaylight / blueprint / restconf-bp.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Pantheon technologies s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
10            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
11            xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
12            xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.4.0"
13            odl:use-default-for-reference-types="true">
14
15   <!-- Restconf providers -->
16   <!--
17     This cfg file defines the type of the DOMDataBroker service to use. 'default' indicates to use
18     the default DOMDataBroker provided by MD-SAL. This setting is useful for providing a custom
19     DOMDataBroker implementation that does, e.g., validation or additional security checking on
20     top of the default DOMDataBroker.
21   -->
22   <cm:property-placeholder persistent-id="org.opendaylight.restconf.databroker"
23         placeholder-prefix = "@{" placeholder-suffix = "}" update-strategy="reload">
24     <cm:default-properties>
25       <cm:property name="databroker-service-type" value="default"/>
26     </cm:default-properties>
27   </cm:property-placeholder>
28
29   <!-- We need the AAAService available even though we don't use it -->
30   <reference interface="org.opendaylight.aaa.api.AAAService"/>
31
32   <reference id="schemaService" interface="org.opendaylight.controller.sal.core.api.model.SchemaService"/>
33   <reference id="domRpcService" interface="org.opendaylight.controller.md.sal.dom.api.DOMRpcService"/>
34   <reference id="domMountPointService" interface="org.opendaylight.controller.md.sal.dom.api.DOMMountPointService"/>
35   <reference id="domNotificationService" interface="org.opendaylight.controller.md.sal.dom.api.DOMNotificationService"/>
36   <reference id="domDataBroker" interface="org.opendaylight.controller.md.sal.dom.api.DOMDataBroker"
37           ext:filter="(type=@{databroker-service-type})"/>
38   <reference id="domSchemaService" interface="org.opendaylight.mdsal.dom.api.DOMSchemaService"/>
39
40   <bean id="wrapper" class="org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapperImpl"
41           factory-method="getInstance" />
42
43   <bean id="restconfProvider" class="org.opendaylight.restconf.nb.rfc8040.RestConnectorProvider"
44           init-method="start" destroy-method="close">
45     <argument ref="domDataBroker"/>
46     <argument ref="schemaService"/>
47     <argument ref="domRpcService"/>
48     <argument ref="domNotificationService"/>
49     <argument ref="domMountPointService"/>
50     <argument ref="domSchemaService"/>
51     <argument ref="wrapper"/>
52   </bean>
53
54   <service ref="restconfProvider"
55       interface="org.opendaylight.restconf.nb.rfc8040.RestconfConnector" />
56
57   <!-- JSONRestconfService -->
58   <bean id="jsonRestconfService" depends-on="restconfProvider"
59       class="org.opendaylight.restconf.nb.rfc8040.rests.services.impl.JSONRestconfServiceRfc8040Impl"
60       destroy-method="close">
61     <argument ref="wrapper"/>
62     <argument>
63       <bean factory-ref="restconfProvider" factory-method="getMountPointServiceHandler" />
64     </argument>
65   </bean>
66
67   <service ref="jsonRestconfService" odl:type="rfc8040"
68       interface="org.opendaylight.restconf.nb.rfc8040.rests.services.api.JSONRestconfService" />
69
70 </blueprint>