SEC-1501: Fix bean classname in Javadoc for SwitchUserFilter.

This commit is contained in:
Luke Taylor 2010-06-25 13:36:52 +01:00
parent cd946c4e23
commit 09176b0af4
1 changed files with 5 additions and 4 deletions

View File

@ -87,11 +87,12 @@ import org.springframework.web.filter.GenericFilterBean;
* <tt>FilterSecurityInteceptor</tt> in the chain, in order to apply the correct constraints to the <tt>switchUserUrl</tt>. * <tt>FilterSecurityInteceptor</tt> in the chain, in order to apply the correct constraints to the <tt>switchUserUrl</tt>.
* Example: * Example:
* <pre> * <pre>
* &lt;bean id="switchUserProcessingFilter" class="org.springframework.security.web.authentication.SwitchUserFilter"> * &lt;bean id="switchUserProcessingFilter" class="org.springframework.security.web.authentication.switchuser.SwitchUserFilter">
* &lt;property name="userDetailsService" ref="userDetailsService" /> * &lt;property name="userDetailsService" ref="userDetailsService" />
* &lt;property name="switchUserUrl">&lt;value>/j_spring_security_switch_user&lt;/value>&lt;/property> * &lt;property name="switchUserUrl" value="/j_spring_security_switch_user" />
* &lt;property name="exitUserUrl">&lt;value>/j_spring_security_exit_user&lt;/value>&lt;/property> * &lt;property name="exitUserUrl" value="/j_spring_security_exit_user" />
* &lt;property name="targetUrl">&lt;value>/index.jsp&lt;/value>&lt;/property>&lt;/bean> * &lt;property name="targetUrl" value="/index.jsp" />
* &lt;/bean>
* </pre> * </pre>
* *
* @author Mark St.Godard * @author Mark St.Godard