mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-29 15:21:53 +00:00
58310: Merge Dev to HEAD-BUG-FIX
MNT-8647 : inconsistent ftp authentication chain behaviour
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@61955 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
30 lines
1.2 KiB
XML
30 lines
1.2 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>
|
|
|
|
<!-- Authentication chains for FTP testing -->
|
|
|
|
<bean id="testFtpAuthentication"
|
|
class="org.alfresco.repo.management.subsystems.DefaultChildApplicationContextManager"
|
|
parent="abstractPropertyBackedBean">
|
|
<property name="defaultChain">
|
|
<value>type1:authType1,type2:authType2,type3:authType3</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="testFtpAuthenticationAllDisabled"
|
|
class="org.alfresco.repo.management.subsystems.DefaultChildApplicationContextManager"
|
|
parent="abstractPropertyBackedBean">
|
|
<property name="defaultChain">
|
|
<value>type1:authType1,type2:authType2</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="testFtpAuthenticationAllFailing"
|
|
class="org.alfresco.repo.management.subsystems.DefaultChildApplicationContextManager"
|
|
parent="abstractPropertyBackedBean">
|
|
<property name="defaultChain">
|
|
<value>type1:authType1,type2:authType2</value>
|
|
</property>
|
|
</bean>
|
|
</beans> |