2a1aad59c77d37483900f9aeeac9b82d05523c49
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / resources / OSGI-INF / blueprint / restconf-config.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Inocybe Technologies Inc. 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   <cm:property-placeholder persistent-id="org.opendaylight.restconf" update-strategy="reload">
18     <cm:default-properties>
19       <cm:property name="websocket-address" value="0.0.0.0"/>
20       <cm:property name="websocket-port" value="8185"/>
21     </cm:default-properties>
22   </cm:property-placeholder>
23
24   <!--
25     This cfg file defines the type of the DOMDataBroker service to use. 'default' indicates to use
26     the default DOMDataBroker provided by MD-SAL. This setting is useful for providing a custom
27     DOMDataBroker implementation that does, e.g., validation or additional security checking on
28     top of the default DOMDataBroker.
29   -->
30   <cm:property-placeholder persistent-id="org.opendaylight.restconf.databroker"
31         placeholder-prefix = "@{" placeholder-suffix = "}" update-strategy="reload">
32     <cm:default-properties>
33       <cm:property name="databroker-service-type" value="default"/>
34     </cm:default-properties>
35   </cm:property-placeholder>
36
37   <reference id="dOMDataBroker" interface="org.opendaylight.mdsal.dom.api.DOMDataBroker"
38           ext:filter="(type=@{databroker-service-type})"/>
39
40   <bean id="webSocketPort" class="org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber">
41     <argument value="${websocket-port}"/>
42   </bean>
43
44   <bean id="webSocketAddress" class="org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress">
45     <argument value="${websocket-address}"/>
46   </bean>
47
48   <bean id="restconfProviderDraft02" class="org.opendaylight.netconf.sal.restconf.impl.RestconfProviderImpl"
49           init-method="start" destroy-method="close">
50     <argument ref="statisticsRestconfServiceWrapper"/>
51     <argument ref="webSocketAddress"/>
52     <argument ref="webSocketPort"/>
53   </bean>
54 </blueprint>