SEC-2933: Update ProviderManager reference XML to use constructor
This commit is contained in:
parent
d5dfeeca49
commit
1087d19346
|
@ -2176,14 +2176,14 @@ If you are using the namespace, an instance of `ProviderManager` is created and
|
||||||
----
|
----
|
||||||
|
|
||||||
<bean id="authenticationManager"
|
<bean id="authenticationManager"
|
||||||
class="org.springframework.security.authentication.ProviderManager">
|
class="org.springframework.security.authentication.ProviderManager">
|
||||||
<property name="providers">
|
<constructor-arg>
|
||||||
<list>
|
<list>
|
||||||
<ref local="daoAuthenticationProvider"/>
|
<ref local="daoAuthenticationProvider"/>
|
||||||
<ref local="anonymousAuthenticationProvider"/>
|
<ref local="anonymousAuthenticationProvider"/>
|
||||||
<ref local="ldapAuthenticationProvider"/>
|
<ref local="ldapAuthenticationProvider"/>
|
||||||
</list>
|
</list>
|
||||||
</property>
|
</constructor-arg>
|
||||||
</bean>
|
</bean>
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue