mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-04-23 23:55:13 +00:00
Suppress compiler warnings and minor javadoc fix for ProviderManager
This commit is contained in:
parent
ff495b698e
commit
3dca70403d
@ -203,6 +203,7 @@ public class ProviderManager implements AuthenticationManager, MessageSourceAwar
|
|||||||
throw lastException;
|
throw lastException;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
private void prepareException(AuthenticationException ex, Authentication auth) {
|
private void prepareException(AuthenticationException ex, Authentication auth) {
|
||||||
ex.setAuthentication(auth);
|
ex.setAuthentication(auth);
|
||||||
|
|
||||||
@ -273,7 +274,7 @@ public class ProviderManager implements AuthenticationManager, MessageSourceAwar
|
|||||||
* @deprecated Use constructor injection
|
* @deprecated Use constructor injection
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||||
public void setProviders(List providers) {
|
public void setProviders(List providers) {
|
||||||
Assert.notNull(providers, "Providers list cannot be null");
|
Assert.notNull(providers, "Providers list cannot be null");
|
||||||
for(Object currentObject : providers) {
|
for(Object currentObject : providers) {
|
||||||
@ -284,7 +285,7 @@ public class ProviderManager implements AuthenticationManager, MessageSourceAwar
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If set to true, the {@code extraInformation} set on an {@code AuthenticationException</tt> will be cleared
|
* If set to true, the {@code extraInformation} set on an {@code AuthenticationException} will be cleared
|
||||||
* before rethrowing it. This is useful for use with remoting protocols where the information shouldn't
|
* before rethrowing it. This is useful for use with remoting protocols where the information shouldn't
|
||||||
* be serialized to the client. Defaults to 'false'.
|
* be serialized to the client. Defaults to 'false'.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user