1
0
mirror of synced 2026-08-04 17:27:13 +00:00

SEC-1359,SEC-1360,SEC-1361,SEC-1363,SEC-1364,SEC-1365,SEC-1366,SEC-1367: Minor doc and Javadoc typos.

This commit is contained in:
Luke Taylor
2010-01-13 15:36:58 +00:00
parent 3a8daa1bf4
commit a9567a58d8
7 changed files with 14 additions and 15 deletions
@@ -134,7 +134,7 @@ public abstract class AbstractAuthenticationTargetUrlRequestHandler {
}
/**
* The current request will be checked for this parameter before and the value used as the target URL if resent.
* The current request will be checked for this parameter before and the value used as the target URL if present.
*
* @param targetUrlParameter the name of the parameter containing the encoded target URL. Defaults
* to "redirect".
@@ -29,16 +29,16 @@ import org.springframework.util.Assert;
/**
* Processes an authentication form. Called <tt>AuthenticationProcessingFilter<tt> in previous versions
* of the framework.
* Processes an authentication form submission. Called {@code AuthenticationProcessingFilter} prior to Spring Security
* 3.0.
* <p>
* Login forms must present two parameters to this filter: a username and
* password. The default parameter names to use are contained in the
* static fields {@link #SPRING_SECURITY_FORM_USERNAME_KEY} and {@link #SPRING_SECURITY_FORM_PASSWORD_KEY}.
* The parameter names can also be changed by setting the <tt>usernameParameter</tt> and <tt>passwordParameter</tt>
* The parameter names can also be changed by setting the {@literal usernameParameter} and {@literal passwordParameter}
* properties.
* <p>
* This filter by default responds to the URL <tt>/j_spring_security_check</tt>.
* This filter by default responds to the URL {@literal /j_spring_security_check}.
*
* @author Ben Alex
* @author Colin Sampaleanu