Package de.xima.fc.dao.interfaces
Interface ISystemAuthenticatorDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<SystemAuthenticator,Long,IEntityContext>
,IGenericDao<SystemAuthenticator>
,IMandantDependentBaseDao<SystemAuthenticator>
- All Known Implementing Classes:
SystemAuthenticatorDao
public interface ISystemAuthenticatorDao extends IMandantDependentBaseDao<SystemAuthenticator>
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemAuthenticator
getByUuid(IEntityContext ec, 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 SystemAuthenticator getByUuid(IEntityContext ec, UUID uuid)
- Parameters:
ec
- Current entity context for accessing the database.uuid
- UUID of the authenticator to retrieve.- Returns:
- The authenticator with the given UUID, or
null
when no such authenticator exist.
-
-