Package de.xima.fc.dao.interfaces
Interface IUserCredentialsDao
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<UserCredentials,
,Long, IEntityContext> IGenericDao<UserCredentials>
- All Known Implementing Classes:
UserCredentialsDao
DAO for reading and writing
UserCredentials
entities.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
Method Summary
Modifier and TypeMethodDescriptiongetByUuid
(IEntityContext ec, String uuid) Finds the user credentials with the given UUID.getByUuid
(IEntityContext ec, UUID uuid) Finds the user credentials with the given 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
count, findAll, findSingle, getEntityRefs, read
-
Method Details
-
getByUuid
Finds the user credentials with the given UUID.- Parameters:
ec
- entity context for accessing the database.uuid
- UUID of the user credentials.- Returns:
- The user credentials with the given UUID.
-
getByUuid
Finds the user credentials with the given UUID.- Parameters:
ec
- entity context for accessing the database.uuid
- of the user credentials.- Returns:
- The user credentials with the given UUID.
-