From 80ccd2b2857f8495cf5820ec1874ca0e113b2a17 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 25 Jun 2010 13:36:52 +0100 Subject: [PATCH] SEC-1501: Fix bean classname in Javadoc for SwitchUserFilter. --- .../web/authentication/switchuser/SwitchUserFilter.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java b/web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java index f9ef762404..e140e49ffb 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java +++ b/web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java @@ -87,11 +87,12 @@ import org.springframework.web.filter.GenericFilterBean; * FilterSecurityInteceptor in the chain, in order to apply the correct constraints to the switchUserUrl. * Example: *
- * <bean id="switchUserProcessingFilter" class="org.springframework.security.web.authentication.SwitchUserFilter">
+ * <bean id="switchUserProcessingFilter" class="org.springframework.security.web.authentication.switchuser.SwitchUserFilter">
  *    <property name="userDetailsService" ref="userDetailsService" />
- *    <property name="switchUserUrl"><value>/j_spring_security_switch_user</value></property>
- *    <property name="exitUserUrl"><value>/j_spring_security_exit_user</value></property>
- *    <property name="targetUrl"><value>/index.jsp</value></property></bean>
+ *    <property name="switchUserUrl" value="/j_spring_security_switch_user" />
+ *    <property name="exitUserUrl" value="/j_spring_security_exit_user" />
+ *    <property name="targetUrl" value="/index.jsp" />
+ * </bean>
  * 
* * @author Mark St.Godard