File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
demo/webapp-vaadin/src/main/java/software/xdev/sse/demo/security Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class MainWebSecurity
31
31
private static final Logger LOG = LoggerFactory .getLogger (MainWebSecurity .class );
32
32
33
33
@ Bean
34
- protected SecurityFilterChain httpSecurityFilterChain (
34
+ protected SecurityFilterChain mainSecurityFilterChain (
35
35
final HttpSecurity http ,
36
36
final OAuth2CookieRememberMeServices cookieRememberMeServices ,
37
37
final OAuth2RefreshFilter oAuth2RefreshFilter ,
@@ -64,12 +64,12 @@ protected SecurityFilterChain httpSecurityFilterChain(
64
64
65
65
cookieRememberMeServices .install (http );
66
66
67
- final DefaultSecurityFilterChain build = http
67
+ final DefaultSecurityFilterChain chain = http
68
68
.with (new TotalVaadinFlowSecurityConfigurer (), Customizer .withDefaults ())
69
69
.build ();
70
70
71
71
LOG .info ("Configuration finished - {} is spooled up and operational" , this .getClass ().getSimpleName ());
72
72
73
- return build ;
73
+ return chain ;
74
74
}
75
75
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ The overall goal is to
21
21
public class MainWebSecurity
22
22
{
23
23
@Bean
24
- protected SecurityFilterChain httpSecurityFilterChain (
24
+ protected SecurityFilterChain mainSecurityFilterChain (
25
25
final HttpSecurity http ,
26
26
final OAuth2CookieRememberMeServices cookieRememberMeServices ,
27
27
final OAuth2RefreshFilter oAuth2RefreshFilter ,
You can’t perform that action at this time.
0 commit comments