Package de.xima.fc.api.entity
Class SystemAuthenticatorAPI
- java.lang.Object
-
- de.xima.fc.api.ASubAPI
-
- de.xima.fc.api.entity.AEntityAPI<SystemAuthenticator>
-
- de.xima.fc.api.entity.SystemAuthenticatorAPI
-
public class SystemAuthenticatorAPI extends AEntityAPI<SystemAuthenticator>
API class for reading and writingSystemAuthenticator
entities.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
-
Field Summary
-
Fields inherited from class de.xima.fc.api.entity.AEntityAPI
entityClass
-
-
Constructor Summary
Constructors Constructor Description SystemAuthenticatorAPI()
-
Method Summary
All Methods Instance Methods Concrete 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 class de.xima.fc.api.entity.AEntityAPI
create, create, delete, delete, deleteAllBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getEntityRefs, getPagedResult, getSingleAttributes, getSingleAttributes, resultTotalCount, resultTotalCount, update, update
-
Methods inherited from class de.xima.fc.api.ASubAPI
getHandlerProvider
-
-
-
-
Method Detail
-
getByUuid
@Nullable public 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
public 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.
-
-