File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
config/src/main/java/org/springframework/security/config/http Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ final class AuthenticationConfigBuilder {
167167 private BeanDefinition authorizationCodeGrantFilter ;
168168 private BeanReference authorizationCodeAuthenticationProviderRef ;
169169
170+ private final List <BeanReference > authenticationProviders = new ManagedList <>();
170171 private final Map <BeanDefinition , BeanMetadataElement > defaultDeniedHandlerMappings = new ManagedMap <>();
171172 private final Map <BeanDefinition , BeanMetadataElement > defaultEntryPointMappings = new ManagedMap <>();
172173 private final List <BeanDefinition > csrfIgnoreRequestMatchers = new ManagedList <>();
@@ -1013,6 +1014,8 @@ List<BeanReference> getProviders() {
10131014 providers .add (authorizationCodeAuthenticationProviderRef );
10141015 }
10151016
1017+ providers .addAll (this .authenticationProviders );
1018+
10161019 return providers ;
10171020 }
10181021
You can’t perform that action at this time.
0 commit comments