diff options
author | janani b <janani.b@huawei.com> | 2018-09-12 18:30:28 +0530 |
---|---|---|
committer | janani b <janani.b@huawei.com> | 2018-09-12 18:30:28 +0530 |
commit | 259eece936114ccacf9acc8f412eeed033fd10c4 (patch) | |
tree | a3cd3e726b234c546e5433a9006ac71896c0760d /restconf-client/provider/src/main/resources/org/opendaylight | |
parent | f7086e83c97a72be14ef6813b3c1f8bd0546452e (diff) |
UT and defect fixes for DF serializer
UT and defect fixes
Issue-ID: CCSDK-376
Change-Id: Ia5f04a0d7e07caad0e3b380fdfa6cc109ec43b4e
Signed-off-by: janani b <janani.b@huawei.com>
Diffstat (limited to 'restconf-client/provider/src/main/resources/org/opendaylight')
-rwxr-xr-x | restconf-client/provider/src/main/resources/org/opendaylight/blueprint/restconf-client-blueprint.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/restconf-client/provider/src/main/resources/org/opendaylight/blueprint/restconf-client-blueprint.xml b/restconf-client/provider/src/main/resources/org/opendaylight/blueprint/restconf-client-blueprint.xml index 91c31efc..c8f2dc4c 100755 --- a/restconf-client/provider/src/main/resources/org/opendaylight/blueprint/restconf-client-blueprint.xml +++ b/restconf-client/provider/src/main/resources/org/opendaylight/blueprint/restconf-client-blueprint.xml @@ -23,7 +23,15 @@ xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" odl:use-default-for-reference-types="true"> - <bean id="restconfapiCallNodeProvider" class="org.onap.ccsdk.sli.plugins.restconfapicall.RestconfApiCallNode" /> + <reference xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0" + id="restapiCallNodeProvider" + interface="org.onap.ccsdk.sli.plugins.restapicall.RestapiCallNode" + ext:proxy-method="classes"/> + + <bean id="restconfapiCallNodeProvider" class="org.onap.ccsdk.sli.plugins.restconfapicall.RestconfApiCallNode" > + <argument ref="restapiCallNodeProvider"/> + </bean> + <bean id="restconfDiscoveryNodeProvider" class="org.onap.ccsdk.sli.plugins.restconfdiscovery.RestconfDiscoveryNode" /> <service ref="restconfapiCallNodeProvider"> |