mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
6466: Xml metadata. Support for pulling collections of values from XML 6470: Fix for AWC-1321 - Using zero as items per page gives error for Alfresco repos in OpenSearch 6471: Fix for AWC-1496 - OpenSearch dashlet can get in a state where search queries are not executed 6472: Fix for AWC-1495. Searching additional attributes now working correctly for folders. 6473: Fix for AR-1251 (Version error when saving new content via CIFS) 6474: Updated bundles and installers - added missing files back into Linux bundle 6475: LDAP and chainging authentication Resolved conflicted state of 'root\projects\repository\source\java\org\alfresco\repo\security\authentication\AuthenticationUtil.java' 6477: XForms WCM-696. 6478: Fix for WCM-567 (IndexOutOfBoundsException when stepping through wizard rapidly) 6480: Fix to issue when removing locks on directories. 6481: Updated installer and config wizard to fix download option and config behaviour when called from installer. 6482: Fix for WCM-1229 (properties sheet does not refresh) 6483: Fix for AR-1511 6484: Fix for AR-1351 6485: Missed a unit test update git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6737 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
104 lines
3.9 KiB
XML
104 lines
3.9 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
|
|
|
|
|
|
<!-- Chaining of both the services and components -->
|
|
|
|
<bean id="authenticationService" class="org.alfresco.repo.security.authentication.ChainingAuthenticationServiceImpl">
|
|
<property name="authenticationServices">
|
|
<list>
|
|
<ref bean="authenticationServiceImplJAAS"/>
|
|
</list>
|
|
</property>
|
|
<property name="mutableAuthenticationService">
|
|
<ref bean="authenticationServiceImplAlfresco"/>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="authenticationComponent" class="org.alfresco.repo.security.authentication.ChainingAuthenticationComponentImpl">
|
|
<property name="authenticationComponentss">
|
|
<list>
|
|
<ref bean="authenticationComponentImplJAAS"/>
|
|
</list>
|
|
</property>
|
|
<property name="mutableAuthenticationComponent">
|
|
<ref bean="authenticationComponentImplAlfresco"/>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Alfresco Auth -->
|
|
|
|
<bean id="authenticationServiceImplAlfresco" class="org.alfresco.repo.security.authentication.AuthenticationServiceImpl">
|
|
<property name="authenticationDao">
|
|
<ref bean="authenticationDaoAlfresco"/>
|
|
</property>
|
|
<property name="ticketComponent">
|
|
<ref bean="ticketComponent"/>
|
|
</property>
|
|
<property name="authenticationComponent">
|
|
<ref bean="authenticationComponentImplAlfresco"/>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="authenticationDaoAlfresco" class="org.alfresco.repo.security.authentication.RepositoryAuthenticationDao">
|
|
<property name="nodeService">
|
|
<ref bean="nodeService"/>
|
|
</property>
|
|
<property name="dictionaryService">
|
|
<ref bean="dictionaryService"/>
|
|
</property>
|
|
<property name="namespaceService">
|
|
<ref bean="namespaceService"/>
|
|
</property>
|
|
<property name="searchService">
|
|
<ref bean="searchService"/>
|
|
</property>
|
|
<property name="userNamesAreCaseSensitive">
|
|
<value>${user.name.caseSensitive}</value>
|
|
</property>
|
|
<property name="passwordEncoder">
|
|
<ref bean="passwordEncoder"/>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="authenticationComponentImplAlfresco" class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl">
|
|
<property name="authenticationDao">
|
|
<ref bean="authenticationDaoAlfresco"/>
|
|
</property>
|
|
<property name="authenticationManager">
|
|
<ref bean="authenticationManager"/>
|
|
</property>
|
|
<property name="allowGuestLogin">
|
|
<value>true</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- JAAS -->
|
|
|
|
<bean id="authenticationServiceImplJAAS" class="org.alfresco.repo.security.authentication.AuthenticationServiceImpl">
|
|
<property name="authenticationDao">
|
|
<ref bean="authenticationDaoJAAS"/>
|
|
</property>
|
|
<property name="ticketComponent">
|
|
<ref bean="ticketComponent"/>
|
|
</property>
|
|
<property name="authenticationComponent">
|
|
<ref bean="authenticationComponentImplJAAS"/>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="authenticationComponentImplJAAS" class="org.alfresco.repo.security.authentication.jaas.JAASAuthenticationComponent">
|
|
<property name="realm">
|
|
<value>COMPANY.COM</value>
|
|
</property>
|
|
<property name="jaasConfigEntryName">
|
|
<value>Alfresco</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="authenticationDaoJAAS" class="org.alfresco.repo.security.authentication.ntlm.NullMutableAuthenticationDao"/>
|
|
|
|
</beans> |