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 |
|
biniek | 402e5e2 | 2018-04-10 10:48:54 +0200 | [diff] [blame] | 17 | <bean id="informDmaapClient" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.InformDmaapClient">
|
Lukasz Muszkieta | 7c73254 | 2018-04-25 11:54:47 +0200 | [diff] [blame] | 18 | <property name="dmaapClient" ref="pnfEventReadyDmaapClient"/>
|
biniek | 402e5e2 | 2018-04-10 10:48:54 +0200 | [diff] [blame] | 19 | </bean>
|
| 20 |
|
biniek | 0b027e2 | 2018-04-19 15:02:18 +0200 | [diff] [blame] | 21 | <bean id="cancelDmaapSubscription" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CancelDmaapSubscription">
|
Lukasz Muszkieta | 7c73254 | 2018-04-25 11:54:47 +0200 | [diff] [blame] | 22 | <property name="dmaapClient" ref="pnfEventReadyDmaapClient"/>
|
biniek | 0b027e2 | 2018-04-19 15:02:18 +0200 | [diff] [blame] | 23 | </bean>
|
| 24 |
|
Lukasz Muszkieta | 7c73254 | 2018-04-25 11:54:47 +0200 | [diff] [blame] | 25 | <bean id="pnfEventReadyDmaapClient" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyDmaapClient"
|
Lukasz Muszkieta | b196509 | 2018-04-12 18:24:12 +0200 | [diff] [blame] | 26 | init-method="init">
|
Lukasz Muszkieta | b196509 | 2018-04-12 18:24:12 +0200 | [diff] [blame] | 27 | <property name="dmaapProtocol" value="${protocol}"/>
|
| 28 | <property name="dmaapUriPathPrefix" value="${uriPathPrefix}"/>
|
Lukasz Muszkieta | 8e3ee2e | 2018-04-06 14:50:21 +0200 | [diff] [blame] | 29 | <property name="dmaapTopicName" value="${eventReadyTopicName}"/>
|
Lukasz Muszkieta | b196509 | 2018-04-12 18:24:12 +0200 | [diff] [blame] | 30 | <property name="consumerGroup" value="${consumerGroup}"/>
|
Lukasz Muszkieta | 8e3ee2e | 2018-04-06 14:50:21 +0200 | [diff] [blame] | 31 | <property name="consumerId" value="${consumerId}"/>
|
Lukasz Muszkieta | b196509 | 2018-04-12 18:24:12 +0200 | [diff] [blame] | 32 | <property name="dmaapClientDelayInSeconds" value="${clientThreadDelayInSeconds}"/>
|
Lukasz Muszkieta | 8e3ee2e | 2018-04-06 14:50:21 +0200 | [diff] [blame] | 33 | </bean>
|
| 34 |
|
| 35 | <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
| 36 | <property name="locations" value="classpath:dmaap.properties"/>
|
| 37 | </bean>
|
| 38 |
|
biniek | 59e4171 | 2018-05-17 12:11:50 +0200 | [diff] [blame] | 39 | <bean id="pnfCheckInputs" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.PnfCheckInputs">
|
Arthur Martella | a69ded6 | 2018-05-21 16:09:27 -0400 | [diff] [blame] | 40 | <property name="defaultTimeout" value="${pnfDefaultTimeout}"/>
|
biniek | 59e4171 | 2018-05-17 12:11:50 +0200 | [diff] [blame] | 41 | </bean>
|
| 42 |
|
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 43 | </beans>
|