Interface ISystemAuthenticatorHandler
-
- All Superinterfaces:
IAPIHandler
,IGenericHandler
,Serializable
- All Known Implementing Classes:
SystemAuthenticatorHandler
public interface ISystemAuthenticatorHandler extends IGenericHandler
Handler forSystemAuthenticator
entities.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemAuthenticator
getByCallback(UserContext uc, UUID callbackUuid)
Finds the system authenticator by its callback UUID.SystemAuthenticator
getByUuid(UserContext uc, UUID uuid)
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
Methods inherited from interface de.xima.fc.handler.interfaces.entity.IGenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getEntityRefs, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getByUuid
@Nullable SystemAuthenticator getByUuid(UserContext uc, UUID uuid)
- Parameters:
uc
- Current user context for database transactions.uuid
- UUID of the authenticator to retrieve.- Returns:
- The authenticator with the given UUID, or
null
when no such authenticator exist.
-
getByCallback
@Nullable SystemAuthenticator getByCallback(UserContext uc, UUID callbackUuid)
Finds the system authenticator by its callback UUID.- Parameters:
uc
- Current user context for accessing the database.callbackUuid
- Callback UUID of the authenticator to retrieve.- Returns:
- The authenticator with the given callback UUID, or
null
when no such authenticator exist.
-
-