blob: 1753ba1919e281a9257535c4144ef2aabb7ac25b [file] [log] [blame]
Arthur Martella62cd6aa2017-09-08 13:27:46 -04001<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 -->
biniek5c788af2018-03-20 16:41:13 +01007 <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 Martella62cd6aa2017-09-08 13:27:46 -040016
biniek402e5e22018-04-10 10:48:54 +020017 <bean id="informDmaapClient" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.InformDmaapClient">
Lukasz Muszkieta7c732542018-04-25 11:54:47 +020018 <property name="dmaapClient" ref="pnfEventReadyDmaapClient"/>
biniek402e5e22018-04-10 10:48:54 +020019 </bean>
20
biniek0b027e22018-04-19 15:02:18 +020021 <bean id="cancelDmaapSubscription" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.CancelDmaapSubscription">
Lukasz Muszkieta7c732542018-04-25 11:54:47 +020022 <property name="dmaapClient" ref="pnfEventReadyDmaapClient"/>
biniek0b027e22018-04-19 15:02:18 +020023 </bean>
24
Lukasz Muszkieta7c732542018-04-25 11:54:47 +020025 <bean id="pnfEventReadyDmaapClient" class="org.openecomp.mso.bpmn.infrastructure.pnf.dmaap.PnfEventReadyDmaapClient"
Lukasz Muszkietab1965092018-04-12 18:24:12 +020026 init-method="init">
Lukasz Muszkietab1965092018-04-12 18:24:12 +020027 <property name="dmaapProtocol" value="${protocol}"/>
28 <property name="dmaapUriPathPrefix" value="${uriPathPrefix}"/>
Lukasz Muszkieta8e3ee2e2018-04-06 14:50:21 +020029 <property name="dmaapTopicName" value="${eventReadyTopicName}"/>
Lukasz Muszkietab1965092018-04-12 18:24:12 +020030 <property name="consumerGroup" value="${consumerGroup}"/>
Lukasz Muszkieta8e3ee2e2018-04-06 14:50:21 +020031 <property name="consumerId" value="${consumerId}"/>
Lukasz Muszkietab1965092018-04-12 18:24:12 +020032 <property name="dmaapClientDelayInSeconds" value="${clientThreadDelayInSeconds}"/>
Lukasz Muszkieta8e3ee2e2018-04-06 14:50:21 +020033 </bean>
34
35 <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
36 <property name="locations" value="classpath:dmaap.properties"/>
37 </bean>
38
biniek59e41712018-05-17 12:11:50 +020039 <bean id="pnfCheckInputs" class="org.openecomp.mso.bpmn.infrastructure.pnf.delegate.PnfCheckInputs">
Arthur Martellaa69ded62018-05-21 16:09:27 -040040 <property name="defaultTimeout" value="${pnfDefaultTimeout}"/>
biniek59e41712018-05-17 12:11:50 +020041 </bean>
42
Arthur Martella62cd6aa2017-09-08 13:27:46 -040043</beans>