Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 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 |
|
| 6 | <!-- Spring bean to be invoked through the ApplicationContextElResolver -->
|
biniek | 5c788af | 2018-03-20 16:41:13 +0100 | [diff] [blame] | 7 | <bean id="aaiConnection" class="org.openecomp.mso.bpmn.infrastructure.pnf.aai.AaiConnectionImpl"/>
|
| 8 |
|
| 9 | <bean id="checkAaiForCorrelationIdDelegate" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CheckAaiForCorrelationIdDelegate">
|
| 10 | <property name="aaiConnection" ref="aaiConnection"/>
|
| 11 | </bean>
|
| 12 |
|
| 13 | <bean id="createAaiEntryWithPnfIdDelegate" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CreateAaiEntryWithPnfIdDelegate">
|
| 14 | <property name="aaiConnection" ref="aaiConnection"/>
|
| 15 | </bean>
|
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 16 |
|
Lukasz Muszkieta | 8e3ee2e | 2018-04-06 14:50:21 +0200 | [diff] [blame^] | 17 | <bean id="pnfEventReadyConsumer" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyConsumer">
|
| 18 | <property name="dmaapHost" value="${dmaapHost}" />
|
| 19 | <property name="dmaapPort" value="${dmaapPort}"/>
|
| 20 | <property name="dmaapProtocol" value="${dmaapProtocol}"/>
|
| 21 | <property name="dmaapUriPathPrefix" value="${dmaapUriPathPrefix}"/>
|
| 22 | <property name="dmaapTopicName" value="${eventReadyTopicName}"/>
|
| 23 | <property name= "consumerGroup" value="${consumerGroup}"/>
|
| 24 | <property name="consumerId" value="${consumerId}"/>
|
| 25 | </bean>
|
| 26 |
|
| 27 | <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
| 28 | <property name="locations" value="classpath:dmaap.properties"/>
|
| 29 | </bean>
|
| 30 |
|
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 31 | </beans>
|