authorizeUrls -> authorizeRequests

Replace remaining authorizeUrls with authorizeRequests

Fixes gh-3875
This commit is contained in:
Rob Winch 2016-05-09 10:34:36 -05:00
parent d4218c70f1
commit ede521dc8d

View File

@ -4897,7 +4897,7 @@ or in Java configuration
[source,java]
----
http
.authorizeUrls()
.authorizeRequests()
.antMatchers("/user/**").access("@webSecurity.check(authentication,request)")
...
----
@ -4936,7 +4936,7 @@ or in Java configuration
[source,java]
----
http
.authorizeUrls()
.authorizeRequests()
.antMatchers("/user/{userId}/**").access("@webSecurity.checkUserId(authentication,#userId)")
...
----