Skip to content
Snippets Groups Projects
Commit a28c8087 authored by brinn's avatar brinn
Browse files

Fix file-ldap-crowd-authentication-service to really include the file authentication service.

SVN: 28185
parent 8debe786
No related branches found
No related tags found
No related merge requests found
...@@ -125,11 +125,21 @@ ...@@ -125,11 +125,21 @@
<property name="cacheTimeNoRevalidationStr" value="${authentication.cache.time-no-revalidation}" /> <property name="cacheTimeNoRevalidationStr" value="${authentication.cache.time-no-revalidation}" />
</bean> </bean>
<bean id="file-ldap-crowd-caching-authentication-service" <bean id="ldap-crowd-caching-authentication-service"
class = "ch.systemsx.cisd.authentication.file.CachingAuthenticationService"> class = "ch.systemsx.cisd.authentication.file.CachingAuthenticationService">
<constructor-arg ref="authentication-cache-configuration" /> <constructor-arg ref="authentication-cache-configuration" />
</bean> </bean>
<bean id="file-ldap-crowd-caching-authentication-service"
class = "ch.systemsx.cisd.authentication.stacked.StackedAuthenticationService">
<constructor-arg>
<list>
<ref bean="file-authentication-service" />
<ref bean="ldap-crowd-caching-authentication-service" />
</list>
</constructor-arg>
</bean>
<!-- Keep this for backward compatibility with old service.properties files. --> <!-- Keep this for backward compatibility with old service.properties files. -->
<alias name="ldap-crowd-authentication-service" alias="stacked-authentication-service"/> <alias name="ldap-crowd-authentication-service" alias="stacked-authentication-service"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment