mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged DEV\EXTENSIONS to HEAD
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
This commit is contained in:
27
config/alfresco/module-context.xml
Normal file
27
config/alfresco/module-context.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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>
|
Reference in New Issue
Block a user