aboutsummaryrefslogtreecommitdiffstats
path: root/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-02-05 16:11:23 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-05 16:11:23 +0000
commit15db72b1cc8fa31e00ed5126d51a9bd560282653 (patch)
treeb627c727a58e4791b1501327824b48fef7ae9cff /grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml
parent0c5ac559319207dca56c6b2509a7b3d7502a7e5e (diff)
parentafde732d7244f4016248cc080e63fe4e29465396 (diff)
Merge "Client for BluePrintProcessingServiceGrpc"
Diffstat (limited to 'grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml')
-rw-r--r--grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml b/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml
index 5e9d5c80..e6e75159 100644
--- a/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml
+++ b/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml
@@ -17,6 +17,17 @@
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
odl:use-default-for-reference-types="true">
- <bean id="grpcClient" class="org.onap.ccsdk.sli.adaptors.grpc.GrpcClient"/>
+
+ <bean id="grpcProperty" class="org.onap.ccsdk.sli.adaptors.grpc.GrpcProperties"/>
+
+ <!--CDS-->
+
+ <bean id="blueprintProcessingHandler" class="org.onap.ccsdk.sli.adaptors.grpc.cds.BlueprintProcessingHandler"/>
+
+ <bean id="grpcClient" class="org.onap.ccsdk.sli.adaptors.grpc.cds.BlueprintProcessingClient"
+ init-method="start" destroy-method="stop">
+ <argument ref="blueprintProcessingHandler"/>
+ <argument ref="grpcProperty"/>
+ </bean>
</blueprint>