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 writing UserCredentials entities.
Since:
8.0.0
Author:
XIMA Media GmbH
  • Method Summary

    Modifier and Type
    Method
    Description
    Finds the user credentials with the given 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

      UserCredentials 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.
    • getByUuid

      UserCredentials 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.