mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-23 18:05:32 +00:00
svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4868 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4869 . svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4904 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4938 . Module management support Modularization of Records Management git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4956 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
28 lines
1.1 KiB
XML
28 lines
1.1 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">
|
|
<property name="serviceRegistry" ref="ServiceRegistry" />
|
|
<property name="authenticationComponent" ref="AuthenticationComponent" />
|
|
<property name="registryService" ref="RegistryService" />
|
|
</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" />
|
|
</bean>
|
|
|
|
<!-- Import of installed modules -->
|
|
<import resource="classpath*:alfresco/module/*/module-context.xml"/>
|
|
<import resource="classpath*:alfresco/module/*/module-uninstall-context.xml"/>
|
|
|
|
</beans>
|