in src/main/java/com/epam/digital/data/platform/starter/security/WebSecurityConfig.java [51:62]
public WebSecurityConfig(
JwtConfigurer securityConfigurerAdapter,
AccessDeniedHandler accessDeniedHandler,
AuthenticationEntryPoint authenticationErrorHandler,
Whitelist whitelist,
@Value("${platform.security.csrf.enabled:false}") boolean csrfEnabled) {
this.securityConfigurerAdapter = securityConfigurerAdapter;
this.accessDeniedHandler = accessDeniedHandler;
this.authenticationErrorHandler = authenticationErrorHandler;
this.whitelist = whitelist;
this.csrfEnabled = csrfEnabled;
}