Package de.xima.fc.dao.interfaces
Interface IClientAuthenticatorDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<ClientAuthenticator,Long,IEntityContext>
,IGenericDao<ClientAuthenticator>
,IMandantDependentBaseDao<ClientAuthenticator>
- All Known Implementing Classes:
ClientAuthenticatorDao
public interface IClientAuthenticatorDao extends IMandantDependentBaseDao<ClientAuthenticator>
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClientAuthenticator
getByUuid(IEntityContext ec, Mandant client, UUID uuid)
-
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
-
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
getEntityRefs, read
-
-
-
-
Method Detail
-
getByUuid
@Nullable ClientAuthenticator getByUuid(IEntityContext ec, Mandant client, UUID uuid)
- Parameters:
ec
- Current entity context for accessing the database.client
- Client where to search for the authenticator.uuid
- UUID of the authenticator to retrieve.- Returns:
- The authenticator with the given UUID that belongs to the client, or
null
when no such authenticator exist.
-
-