weaver 2004/10/12 13:25:11
Modified: portal/src/webapp/WEB-INF/assembly jetspeed-spring.xml
Log:
AuthenticationProvider needed its constructor args indexed. Without the indexing,
the Spring barfs.
Revision Changes Path
1.24 +5 -5
jakarta-jetspeed-2/portal/src/webapp/WEB-INF/assembly/jetspeed-spring.xml
Index: jetspeed-spring.xml
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/portal/src/webapp/WEB-INF/assembly/jetspeed-spring.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- jetspeed-spring.xml 11 Oct 2004 23:26:15 -0000 1.23
+++ jetspeed-spring.xml 12 Oct 2004 20:25:11 -0000 1.24
@@ -233,11 +233,11 @@
<bean id="org.apache.jetspeed.security.AuthenticationProvider"
class="org.apache.jetspeed.security.impl.AuthenticationProviderImpl"
>
- <constructor-arg><value>DefaultAuthenticator</value></constructor-arg>
- <constructor-arg><value>The default authenticator</value></constructor-arg>
- <constructor-arg><value>login.conf</value></constructor-arg>
- <constructor-arg><ref
bean="org.apache.jetspeed.security.spi.CredentialHandler"/></constructor-arg>
- <constructor-arg><ref
bean="org.apache.jetspeed.security.spi.UserSecurityHandler"/></constructor-arg>
+ <constructor-arg
index="0"><value>DefaultAuthenticator</value></constructor-arg>
+ <constructor-arg index="1"><value>The default
authenticator</value></constructor-arg>
+ <constructor-arg index="2"><value>login.conf</value></constructor-arg>
+ <constructor-arg index="3"><ref
bean="org.apache.jetspeed.security.spi.CredentialHandler"/></constructor-arg>
+ <constructor-arg index="4"><ref
bean="org.apache.jetspeed.security.spi.UserSecurityHandler"/></constructor-arg>
</bean>
<!-- Security: Authentication Provider Proxy -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]