From 18610eab6fb94828614c531cc0854d53e0b95fe7 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 414bbc4621..a29bf42c9b 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 @@ -586,6 +586,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

*