diff options
author | biniek <lukasz.biniek@nokia.com> | 2018-04-10 10:48:54 +0200 |
---|---|---|
committer | biniek <lukasz.biniek@nokia.com> | 2018-04-10 11:39:12 +0200 |
commit | 402e5e2cad8320dcfe7bd49cc9724d3071a4224d (patch) | |
tree | 2d8f9cbe47251555f938adf93511ba28fc8d91f1 /bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF | |
parent | f115334f0e8711e36dd43bc79335f2c98c77723f (diff) |
Added informing dmaap client in pnf-ready workflow
Change-Id: I0d7b610e24da56aad32a9b02b987f98f932456f6
Issue-ID: SO-506
Signed-off-by: biniek <lukasz.biniek@nokia.com>
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF')
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml index f46cd065ed..ed1556b05d 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml +++ b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml @@ -14,6 +14,11 @@ <property name="aaiConnection" ref="aaiConnection"/>
</bean>
+ <bean id="informDmaapClient" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.InformDmaapClient">
+ <!--TODO: uncommend line below after DmaapClient is pushed to master-->
+ <!--<property name="dmaapClient" ref="dmaapClient"/>-->
+ </bean>
+
<bean id="pnfEventReadyConsumer" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyConsumer">
<property name="dmaapHost" value="${dmaapHost}" />
<property name="dmaapPort" value="${dmaapPort}"/>
|