Merge "Fix exception case in null return"
[so.git] / bpmn / MSOInfrastructureBPMN / src / test / resources / springConfig_PnfEventReadyConsumer.xml
1 <beans xmlns="http://www.springframework.org/schema/beans"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://www.springframework.org/schema/beans
4                          http://www.springframework.org/schema/beans/spring-beans.xsd">
5   <bean id="pnfEventReadyConsumer" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyConsumer">
6     <property name="dmaapHost" value="${dmaapHost}" />
7     <property name="dmaapPort" value="${dmaapPort}"/>
8     <property name="dmaapProtocol" value="${dmaapProtocol}"/>
9     <property name="dmaapUriPathPrefix" value="${dmaapUriPathPrefix}"/>
10     <property name="dmaapTopicName" value="${eventReadyTopicName}"/>
11     <property name= "consumerGroup" value="${consumerGroup}"/>
12     <property name="consumerId" value="${consumerId}"/>
13   </bean>
14
15   <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
16     <property name="locations" value="classpath:dmaapTest.properties"/>
17   </bean>
18
19 </beans>