Fix JAAS/Kerberos example config

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6143 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2007-07-03 15:50:46 +00:00
parent 6f02a81027
commit d4e57512af

View File

@@ -16,22 +16,13 @@
</property> </property>
</bean> </bean>
<bean id="alfDaoImpl" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> <!-- DAO that rejects changes - JAAS is read only at the moment. -->
<property name="proxyInterfaces"> <!-- It does allow users to be deleted with out warnings from the UI. -->
<value> <!-- The user is still present in JAAS, only the personal information is removed from alfresco. -->
org.alfresco.repo.security.authentication.MutableAuthenticationDao
</value> <bean name="authenticationDao" class="org.alfresco.repo.security.authentication.DefaultMutableAuthenticationDao" >
</property> <property name="allowDeleteUser">
<property name="transactionManager"> <value>true</value>
<ref bean="transactionManager" />
</property>
<property name="target">
<bean class="org.alfresco.repo.security.authentication.ntlm.NullMutableAuthenticationDao" />
</property>
<property name="transactionAttributes">
<props>
<prop key="*">${server.transaction.mode.default}</prop>
</props>
</property> </property>
</bean> </bean>