mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- An authentication chain of size 1 configured by default - DefaultChildApplicationContextManager supports dynamic configuration of the authentication chain via Spring or JMX. Any number of instances of any type allowed in chain. - SubsystemChainingAuthenticationComponent and SubsystemChainingAuthenticationService iterate across configured chain for Authentication - SSO (NTLM / Kerberos) and CIFS authentication independently activatable for any component in chain (where supported). - SubsystemChainingProxyFactory used to proxy directly to first active CIFS authenticator or SSO filter in the chain - CIFS server knows not to bother starting if authentication chain doesn't have an active CIFS authenticator (e.g. LDAP only) - Rationalization of subsystem configuration folder structure and JMX object naming - Classpath based extension mechanism for community edition - alfresco/extension/subsystems/<category>/<typeName>/<id>/*.properties in classpath can be used to configure specific subsystem instances - Simplification of JMX infrastructure. No longer Spring bean definition based, thus allowing dynamic creation/registration of new instances at runtime. - New AuthenticationChainTest unit test git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14030 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
14 lines
841 B
XML
14 lines
841 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
<!-- Top-level imports of XML configuration -->
|
|
<beans>
|
|
<import resource="classpath:alfresco/application-context.xml" />
|
|
<import resource="classpath:alfresco/web-scripts-application-context.xml" />
|
|
<import resource="classpath*:alfresco/enterprise-web-scripts-application-context.xml" />
|
|
<import resource="classpath:alfresco/web-services-application-context.xml" />
|
|
<!--
|
|
To give final control over the tuning of the custom environment, the custom-web-context.xml file is processed
|
|
last (note: custom-web-context.xml isn't part of the source tree itself).
|
|
-->
|
|
<import resource="classpath*:alfresco/extension/custom-web-context.xml" />
|
|
</beans> |