mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-23 18:05:32 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6143 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
29 lines
1.2 KiB
XML
29 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>
|
|
<!-- The authentication component. -->
|
|
|
|
<!-- Jass authentication - most of the config goes somewhere else -->
|
|
|
|
<bean id="authenticationComponent"
|
|
class="org.alfresco.repo.security.authentication.jaas.JAASAuthenticationComponent">
|
|
<property name="realm">
|
|
<value>DEFAULT.REALM</value>
|
|
</property>
|
|
<property name="jaasConfigEntryName">
|
|
<value>Alfresco</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- DAO that rejects changes - JAAS is read only at the moment. -->
|
|
<!-- It does allow users to be deleted with out warnings from the UI. -->
|
|
<!-- The user is still present in JAAS, only the personal information is removed from alfresco. -->
|
|
|
|
<bean name="authenticationDao" class="org.alfresco.repo.security.authentication.DefaultMutableAuthenticationDao" >
|
|
<property name="allowDeleteUser">
|
|
<value>true</value>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |