1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Javadoc fixes.

This commit is contained in:
Luke Taylor
2010-05-06 20:02:08 +01:00
parent 5a4c81a2a5
commit b3aad4cf19
6 changed files with 11 additions and 13 deletions
@@ -36,7 +36,7 @@ import org.springframework.security.web.WebAttributes;
* Being a "forward", the <code>SecurityContextHolder</code> will remain
* populated. This is of benefit if the view (or a tag library or macro) wishes to access the
* <code>SecurityContextHolder</code>. The request scope will also be populated with the exception itself, available
* from the key {@link WebAttributes.ACCESS_DENIED_403}.
* from the key {@link WebAttributes#ACCESS_DENIED_403}.
*
* @author Ben Alex
*/
@@ -42,7 +42,7 @@ public final class RegexRequestMatcher implements RequestMatcher {
*
* @param pattern the regular expression to compile into a pattern.
* @param httpMethod the HTTP method to match. May be null to match all methods.
* @param caseInsensitive if true, the pattern will be compiled with the {@link Pattern.CASE_INSENSITIVE} flag set.
* @param caseInsensitive if true, the pattern will be compiled with the {@link Pattern#CASE_INSENSITIVE} flag set.
*/
public RegexRequestMatcher(String pattern, String httpMethod, boolean caseInsensitive) {
if (caseInsensitive) {
@@ -57,7 +57,7 @@ public final class RegexRequestMatcher implements RequestMatcher {
* Performs the match of the request URL ({@code servletPath + pathInfo + queryString}) against
* the compiled pattern.
*
* @param requst the request to match
* @param request the request to match
* @return true if the pattern matches the URL, false otherwise.
*/
public boolean matches(HttpServletRequest request) {