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
 
 public interface IUserCredentialsDao extends IGenericDao<UserCredentials> DAO for reading and writingUserCredentialsentities.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description UserCredentialsgetByUuid(IEntityContext ec, String uuid)Finds the user credentials with the given UUID.UserCredentialsgetByUuid(IEntityContext ec, UUID uuid)Finds the user credentials with the given UUID.- 
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDaoall, 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.IGenericDaocount, findAll, findSingle, getEntityRefs, read
 
- 
 
- 
- 
- 
Method Detail- 
getByUuidUserCredentials getByUuid(IEntityContext ec, String uuid) 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.
 
 - 
getByUuidUserCredentials getByUuid(IEntityContext ec, UUID uuid) 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.
 
 
- 
 
-