Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xmlns:context="http://www.springframework.org/schema/context" |
| 4 | xmlns:aop="http://www.springframework.org/schema/aop" |
| 5 | xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd |
| 6 | http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd |
| 7 | http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> |
| 8 | |
| 9 | <context:annotation-config /> |
Dmitry Puzikov | bca8dd9 | 2020-03-24 18:22:03 +0100 | [diff] [blame] | 10 | <aop:aspectj-autoproxy proxy-target-class="true"/> |
| 11 | <bean id="fileChangeListener" class=" org.openecomp.sdc.common.impl.ConfigFileChangeListener"/> |
| 12 | <bean id="fsConfig" class="org.openecomp.sdc.common.impl.FSConfigurationSource"> |
| 13 | <constructor-arg ref="fileChangeListener"/> |
| 14 | <constructor-arg value="src/test/resources/config/catalog-be"/> |
| 15 | </bean> |
| 16 | <bean class="org.openecomp.sdc.be.config.ConfigurationManager"> |
| 17 | <constructor-arg ref="fsConfig"/> |
| 18 | </bean> |
| 19 | <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapConsumer"/> |
| 20 | <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapClientFactory"/> |
| 21 | <bean class="org.openecomp.sdc.be.components.distribution.engine.ExecutorFactory"/> |
| 22 | <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapHealth"/> |
| 23 | <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducerHealth"/> |
| 24 | <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducer"/> |
| 25 | <bean class="org.openecomp.sdc.be.impl.ServletUtils"/> |
| 26 | <bean id="componentUtils" class="org.mockito.Mockito" factory-method="mock"> |
| 27 | <constructor-arg value="org.openecomp.sdc.be.impl.ComponentsUtils" /> |
| 28 | </bean> |
| 29 | <bean id="userAdmin" class="org.mockito.Mockito" factory-method="mock"> |
| 30 | <constructor-arg value="org.openecomp.sdc.be.user.UserBusinessLogic" /> |
| 31 | </bean> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 32 | </beans> |