Novell IChains

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2047 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2005-12-19 16:25:33 +00:00
parent 77a19b56f7
commit c1942e3c56
4 changed files with 111 additions and 46 deletions

View File

@@ -194,6 +194,25 @@
</property>
</bean>
<!-- Simple LDAP example config -->
<!--
<bean id="authenticationComponentImpl" class="org.alfresco.repo.security.authentication.LDAPAuthenticationComponentImpl">
</bean>
-->
<!-- Simple Authentication component that rejects all authentication requests -->
<!-- Use this defintion for Novell IChain integration. -->
<!-- It should never go to the login screen so this is not required -->
<!-- (Enterprise version only)
<!--
<bean id="authenticationComponentImpl" class="org.alfresco.repo.security.authentication.SimpleAcceptOrRejectAllAuthenticationComponentImpl">
</bean>
-->
<!-- The person service. -->
<bean id="personService" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
@@ -279,4 +298,38 @@
</property>
</bean>
<!-- Authentication bootstrap -->
<!-- WIP
<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>