Interface IAuthenticationHandler
-
- All Superinterfaces:
IAPIHandler
,Serializable
- All Known Implementing Classes:
AuthenticationHandler
public interface IAuthenticationHandler extends IAPIHandler
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAuthenticator<?>
getAuthenticator(UserContext uc, UUID callbackUuid)
Returns the authenticator with the given callback UUID.AuthenticationData
loadAuthRequestData(UserContext uc, AuthenticationDataRequest request)
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
-
-
-
Method Detail
-
loadAuthRequestData
AuthenticationData loadAuthRequestData(UserContext uc, AuthenticationDataRequest request)
-
getAuthenticator
IAuthenticator<?> getAuthenticator(UserContext uc, UUID callbackUuid)
Returns the authenticator with the given callback UUID.- Parameters:
uc
- user context for accessing the database.callbackUuid
- of the authenticator- Returns:
- authenticator with the given callback UUID.
- Since:
- 7.2.0
-
-