Fixed invalid usege of > tag in Javadocs

This commit is contained in:
Emil Sierżęga 2021-10-13 21:27:42 +02:00 committed by Eleftheria Stein-Kousathana
parent 0f4b77a52f
commit 6b26032ce7
2 changed files with 7 additions and 7 deletions

View File

@ -1363,7 +1363,7 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* &#064;Override * &#064;Override
* protected void configure(HttpSecurity http) throws Exception { * protected void configure(HttpSecurity http) throws Exception {
* http * http
* .authorizeHttpRequests((authorizeHttpRequests) -> * .authorizeHttpRequests((authorizeHttpRequests) -&gt;
* authorizeHttpRequests * authorizeHttpRequests
* .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;) * .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;)
* ) * )
@ -1384,7 +1384,7 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* &#064;Override * &#064;Override
* protected void configure(HttpSecurity http) throws Exception { * protected void configure(HttpSecurity http) throws Exception {
* http * http
* .authorizeHttpRequests((authorizeHttpRequests) -> * .authorizeHttpRequests((authorizeHttpRequests) -&gt;
* authorizeHttpRequests * authorizeHttpRequests
* .antMatchers(&quot;/admin/**&quot;).hasRole(&quot;ADMIN&quot;) * .antMatchers(&quot;/admin/**&quot;).hasRole(&quot;ADMIN&quot;)
* .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;) * .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;)
@ -1406,7 +1406,7 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* &#064;Override * &#064;Override
* protected void configure(HttpSecurity http) throws Exception { * protected void configure(HttpSecurity http) throws Exception {
* http * http
* .authorizeHttpRequests((authorizeHttpRequests) -> * .authorizeHttpRequests((authorizeHttpRequests) -&gt;
* authorizeHttpRequests * authorizeHttpRequests
* .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;) * .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;)
* .antMatchers(&quot;/admin/**&quot;).hasRole(&quot;ADMIN&quot;) * .antMatchers(&quot;/admin/**&quot;).hasRole(&quot;ADMIN&quot;)
@ -2249,7 +2249,7 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* &#064;Bean * &#064;Bean
* public SecurityFilterChain web(HttpSecurity http) throws Exception { * public SecurityFilterChain web(HttpSecurity http) throws Exception {
* http * http
* .authorizeRequests((authorize) -> authorize * .authorizeRequests((authorize) -&gt; authorize
* .anyRequest().authenticated() * .anyRequest().authenticated()
* ) * )
* .saml2Login(withDefaults()) * .saml2Login(withDefaults())
@ -2839,11 +2839,11 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* &#064;Override * &#064;Override
* protected void configure(HttpSecurity http) throws Exception { * protected void configure(HttpSecurity http) throws Exception {
* http * http
* .authorizeRequests(authorizeRequests -> * .authorizeRequests(authorizeRequests -&gt;
* authorizeRequests * authorizeRequests
* .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;) * .antMatchers(&quot;/**&quot;).hasRole(&quot;USER&quot;)
* ) * )
* .passwordManagement(passwordManagement -> * .passwordManagement(passwordManagement -&gt;
* passwordManagement * passwordManagement
* .changePasswordPage(&quot;/custom-change-password-page&quot;) * .changePasswordPage(&quot;/custom-change-password-page&quot;)
* ); * );

View File

@ -716,7 +716,7 @@ public class ServerHttpSecurity {
* public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) { * public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
* http * http
* // ... * // ...
* .passwordManagement(passwordManagement -> * .passwordManagement(passwordManagement -&gt;
* // Custom change password page. * // Custom change password page.
* passwordManagement.changePasswordPage("/custom-change-password-page") * passwordManagement.changePasswordPage("/custom-change-password-page")
* ); * );