File tree 1 file changed +3
-0
lines changed
config/src/main/java/org/springframework/security/config/http
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ final class AuthenticationConfigBuilder {
167
167
private BeanDefinition authorizationCodeGrantFilter ;
168
168
private BeanReference authorizationCodeAuthenticationProviderRef ;
169
169
170
+ private final List <BeanReference > authenticationProviders = new ManagedList <>();
170
171
private final Map <BeanDefinition , BeanMetadataElement > defaultDeniedHandlerMappings = new ManagedMap <>();
171
172
private final Map <BeanDefinition , BeanMetadataElement > defaultEntryPointMappings = new ManagedMap <>();
172
173
private final List <BeanDefinition > csrfIgnoreRequestMatchers = new ManagedList <>();
@@ -1013,6 +1014,8 @@ List<BeanReference> getProviders() {
1013
1014
providers .add (authorizationCodeAuthenticationProviderRef );
1014
1015
}
1015
1016
1017
+ providers .addAll (this .authenticationProviders );
1018
+
1016
1019
return providers ;
1017
1020
}
1018
1021
You can’t perform that action at this time.
0 commit comments