diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-04-23 08:44:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-23 08:44:47 +0000 |
commit | 58dd35b739d5a141467866580b95e30aff03b4f2 (patch) | |
tree | 5a5cf259d8fd6ed26678a35373409a4beb1b073f /bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml | |
parent | b38bdc6dfe05d2a233a63cf21784864fae3fb818 (diff) | |
parent | 0b027e2bd2a1d7a533e4bf439f0d9e2d67dddc2c (diff) |
Merge "Added canceling subsription to pnf-pnp workflow"
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml')
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml | 4 |
1 files changed, 4 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 03fff4f974..4ddeba16be 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml +++ b/bpmn/MSOInfrastructureBPMN/src/main/webapp/WEB-INF/applicationContext.xml @@ -18,6 +18,10 @@ <property name="dmaapClient" ref="pnfEventReadyConsumer"/>
</bean>
+ <bean id="cancelDmaapSubscription" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CancelDmaapSubscription">
+ <property name="dmaapClient" ref="pnfEventReadyConsumer"/>
+ </bean>
+
<bean id="pnfEventReadyConsumer" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyConsumer"
init-method="init">
<property name="dmaapHost" value="${host}"/>
|