public final class DelegatingAuthenticationConverter
extends java.lang.Object
implements org.springframework.security.web.authentication.AuthenticationConverter
AuthenticationConverter that simply delegates to it's
internal List of AuthenticationConverter(s).
Each AuthenticationConverter is given a chance to
AuthenticationConverter.convert(HttpServletRequest)
with the first non-null Authentication being returned.
AuthenticationConverter| Constructor and Description |
|---|
DelegatingAuthenticationConverter(java.util.List<org.springframework.security.web.authentication.AuthenticationConverter> converters)
Constructs a
DelegatingAuthenticationConverter using the provided parameters. |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.security.core.Authentication |
convert(javax.servlet.http.HttpServletRequest request) |
public DelegatingAuthenticationConverter(java.util.List<org.springframework.security.web.authentication.AuthenticationConverter> converters)
DelegatingAuthenticationConverter using the provided parameters.converters - a List of AuthenticationConverter(s)