Files
alfresco-community-repo/config/alfresco/module-context.xml
Tatyana Valkevych 15ee95195f Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)
107219: Merge from DEV/RA-SPRINT6 to HEAD-BUG-FIX
     107097 : RA-369 Community - Sometimes Alfresco is not successfully installed on Linux-based platforms


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@107316 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2015-06-29 11:05:53 +00:00

35 lines
1.6 KiB
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<!--
Core and helper beans for the module-loading components.
-->
<beans >
<!-- The ModuleService implementation -->
<bean id="moduleService" class="org.alfresco.repo.module.ModuleServiceImpl">
<!-- Uses ModuleComponentHelper which requires the ServiceRegistry -->
<property name="serviceRegistry" ref="ServiceRegistry" />
<property name="descriptorService" ref="DescriptorService" />
<property name="registryService" ref="RegistryService" />
<property name="tenantAdminService" ref="tenantAdminService" />
</bean>
<!-- Parent bean for beans derived from AbstractModuleComponent -->
<bean id="module.baseComponent" abstract="true" init-method="init">
<property name="serviceRegistry" ref="ServiceRegistry" />
<property name="authenticationComponent" ref="AuthenticationComponent" />
<property name="moduleService" ref="ModuleService" />
<property name="tenantAdminService" ref="tenantAdminService" />
</bean>
<!-- Import of installed modules -->
<!-- bootstrap context first - for any resources shared between modules like the data list model -->
<import resource="classpath*:alfresco/module/*/module-bootstrap-context.xml"/>
<!-- the main context for each module -->
<import resource="classpath*:alfresco/module/*/module-context.xml"/>
<import resource="classpath*:alfresco/module/*/module-uninstall-context.xml"/>
</beans>