blob: 2b3603ce3bd1a49ce7b48438d1d3eadea2a9b038 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<?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" xmlns:context="http://www.springframework.org/schema/context"
3 xmlns:aop="http://www.springframework.org/schema/aop" xmlns:util="http://www.springframework.org/schema/util"
4 xsi:schemaLocation="
5 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 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
9
10 <context:annotation-config />
11 <aop:aspectj-autoproxy proxy-target-class="true" />
12
13 <context:component-scan
14 base-package="org.openecomp.sdc.be.dao.impl,
15 org.openecomp.sdc.be.dao.es,
16 org.openecomp.sdc.be.resources.impl,
17 org.openecomp.sdc.be.dao.neo4j,
18 org.openecomp.sdc.be.model.operations.impl,
19 org.openecomp.sdc.be.model.cache,
20 org.openecomp.sdc.be.dao.titan,
21 org.openecomp.sdc.be.user,
22 org.openecomp.sdc.be.impl,
23 org.openecomp.sdc.be.auditing.impl,
24 org.openecomp.sdc.be.components.impl,
Tal Gitelman51d50f02017-12-10 18:55:03 +020025 org.openecomp.sdc.be.components.merge,
Michael Lando451a3402017-02-19 10:28:42 +020026 org.openecomp.sdc.be.components.distribution.engine,
27 org.openecomp.sdc.be.distribution,
28 org.openecomp.sdc.be.components.clean,
29 org.openecomp.sdc.be.dao.cassandra,
30 org.openecomp.sdc.be.switchover.detector,
31 org.openecomp.sdc.be.tosca,
Michael Landoed64b5e2017-06-09 03:19:04 +030032 org.openecomp.sdc.be.model.jsontitan.operations,
33 org.openecomp.sdc.be.dao.jsongraph,
Michael Lando451a3402017-02-19 10:28:42 +020034 org.openecomp.sdc.be.externalapi.servlet
35 ">
36
37 </context:component-scan>
38
39 <bean id="resourceImportManager" class="org.openecomp.sdc.be.components.impl.ResourceImportManager" />
40 <bean id="capabilityTypeImportManager" class="org.openecomp.sdc.be.components.impl.CapabilityTypeImportManager" />
41 <bean id="servletUtils" class="org.openecomp.sdc.be.impl.ServletUtils" />
42 <bean id="resourceBusinessLogic" class="org.openecomp.sdc.be.components.impl.ResourceBusinessLogic" />
43 <bean id="serviceBusinessLogic" class="org.openecomp.sdc.be.components.impl.ServiceBusinessLogic" />
44 <bean id="productBusinessLogic" class="org.openecomp.sdc.be.components.impl.ProductBusinessLogic" />
45 <bean id="artifactBusinessLogic" class="org.openecomp.sdc.be.components.impl.ArtifactsBusinessLogic" />
46 <bean id="lifecycleBusinessLogic" class="org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic" />
47 <bean id="serviceComponentInstanceBusinessLogic" class="org.openecomp.sdc.be.components.impl.ServiceComponentInstanceBusinessLogic" />
48 <bean id="productComponentInstanceBusinessLogic" class="org.openecomp.sdc.be.components.impl.ProductComponentInstanceBusinessLogic" />
49 <bean id="vfComponentInstanceBusinessLogic" class="org.openecomp.sdc.be.components.impl.VFComponentInstanceBusinessLogic" />
50 <bean id="transactionManager" class="org.openecomp.sdc.common.transaction.mngr.TransactionManager" />
51 <bean id="userBusinessLogic" class="org.openecomp.sdc.be.user.UserBusinessLogic" />
52 <bean id="elementsBusinessLogic" class="org.openecomp.sdc.be.components.impl.ElementBusinessLogic" />
53 <bean id="propertyBusinessLogic" class="org.openecomp.sdc.be.components.impl.PropertyBusinessLogic" />
54 <bean id="auditingManager" class="org.openecomp.sdc.be.auditing.impl.AuditingManager" />
55 <bean id="distributionBusinessLogic" class="org.openecomp.sdc.be.distribution.DistributionBusinessLogic" />
56 <bean id="interfaceLifecycleTypeImportManager" class="org.openecomp.sdc.be.components.impl.InterfaceLifecycleTypeImportManager" />
57 <bean id="distributionMonitoringBusinessLogic" class="org.openecomp.sdc.be.components.impl.DistributionMonitoringBusinessLogic" />
58 <bean id="additionalInformationBusinessLogic" class="org.openecomp.sdc.be.components.impl.AdditionalInformationBusinessLogic" />
59 <bean id="distribution-engine-cluster-health" class="org.openecomp.sdc.be.components.distribution.engine.DistributionEngineClusterHealth" />
60 <bean id="categoriesImportManager" class="org.openecomp.sdc.be.components.impl.CategoriesImportManager" />
Michael Landob3d48982017-06-11 14:22:02 +030061 <bean id="asset-metadata-utils" class="org.openecomp.sdc.be.ecomp.converters.AssetMetadataConverter" />
Michael Landoed64b5e2017-06-09 03:19:04 +030062
63 <bean class="org.openecomp.sdc.be.dao.config.DAOSpringConfig"/>
64
Michael Lando451a3402017-02-19 10:28:42 +020065 <util:properties id="elasticsearchConfig" location="file:${config.home}/elasticsearch.yml" />
66
67</beans>