Minor tidy ups

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2132 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2006-01-18 10:26:31 +00:00
parent 1fadfb3952
commit c7b9c343bc
6 changed files with 19 additions and 47 deletions

View File

@@ -92,15 +92,15 @@
<property name="namespaceService">
<ref bean="namespaceService" />
</property>
<property name="passwordEncoder">
<ref bean="passwordEncoder" />
</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>
</property>
<property name="transactionAttributes">
@@ -120,6 +120,19 @@
<bean id="passwordEncoder" class="org.alfresco.repo.security.authentication.MD4PasswordEncoderImpl"></bean>
<!--
<bean id="userType" class="org.alfresco.repo.security.authentication.UserType" init-method="init">
<property name="policyComponent">
<ref bean="policyComponent" />
</property>
<property name="nodeService">
<ref bean="nodeService" />
</property>
<property name="passwordEncoder">
<ref bean="passwordEncoder" />
</property>
</bean>
-->
<!-- A transactional wrapper around the implementation. -->
<!-- TODO: This should be removed. -->
@@ -295,38 +308,4 @@
</property>
</bean>
<!-- Authentication bootstrap -->
<!-- Work in progress -->
<!--
<bean id="authenticationBootstrap" class="org.alfresco.repo.security.authentication.AuthenticationBootstrap" init-method="bootstrap">
<property name="config">
<ref bean="authenticationBoostrapConfig"/>
</property>
<property name="authenticationComponent">
<ref bean="authenticationComponentImpl"/>
</property>
<property name="authenticationService">
<ref bean="authenticationService"/>
</property>
<property name="authenticationDao">
<ref bean="alfDaoImpl" />
</property>
</bean>
<bean id="authenticationBoostrapConfigSource" class="org.alfresco.config.source.ClassPathConfigSource">
<constructor-arg>
<list>
<value>alfresco/authentication-bootstrap-config.xml</value>
</list>
</constructor-arg>
</bean>
<bean id="authenticationBoostrapConfig" class="org.alfresco.config.xml.XMLConfigService" init-method="init">
<constructor-arg>
<ref bean="authenticationBoostrapConfigSource"/>
</constructor-arg>
</bean>
-->
</beans>