Fix HttpSecurity Javadoc for jee() method

Fixes: gh-6958
This commit is contained in:
Eleftheria Stein 2019-06-05 15:55:46 -04:00 committed by Rob Winch
parent 855d000408
commit 8e6db95048
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ public final class HttpSecurity extends
* protected void configure(HttpSecurity http) throws Exception {
* http.authorizeRequests().antMatchers("/**").hasRole("USER").and()
* // Example jee() configuration
* .jee().mappableRoles("ROLE_USER", "ROLE_ADMIN");
* .jee().mappableRoles("USER", "ADMIN");
* }
* }
* </pre>