From 173660c6ef661e1afbbcf0c726218932aa1a7322 Mon Sep 17 00:00:00 2001 From: Eleftheria Stein Date: Thu, 2 Apr 2020 11:32:38 -0400 Subject: [PATCH] Fix HttpSecurity Javadoc Fixes gh-4404 --- .../security/config/annotation/web/builders/HttpSecurity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/config/src/main/java/org/springframework/security/config/annotation/web/builders/HttpSecurity.java b/config/src/main/java/org/springframework/security/config/annotation/web/builders/HttpSecurity.java index 005f21c7ab..3bf17a7435 100644 --- a/config/src/main/java/org/springframework/security/config/annotation/web/builders/HttpSecurity.java +++ b/config/src/main/java/org/springframework/security/config/annotation/web/builders/HttpSecurity.java @@ -584,6 +584,7 @@ public final class HttpSecurity extends /** * Allows restricting access based upon the {@link HttpServletRequest} using + * {@link RequestMatcher} implementations (i.e. via URL patterns). * *

Example Configurations

*