Interface AuthenticationConverter
-
- All Known Implementing Classes:
BasicAuthenticationConverter
,Saml2AuthenticationTokenConverter
public interface AuthenticationConverter
A strategy used for converting from aHttpServletRequest
to anAuthentication
of particular type. Used to authenticate with appropriateAuthenticationManager
. If the result is null, then it signals that no authentication attempt should be made. It is also possible to throwAuthenticationException
within theconvert(HttpServletRequest)
if there was invalid Authentication scheme value.- Since:
- 5.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Authentication
convert(javax.servlet.http.HttpServletRequest request)
-
-
-
Method Detail
-
convert
Authentication convert(javax.servlet.http.HttpServletRequest request)
-
-