Interface UserDao

All Superinterfaces:
GenericDao<User,UUID>
All Known Implementing Classes:
SqlUserDao

public interface UserDao extends GenericDao<User,UUID>
Interface for data access operations on User entities. Extends GenericDao for standard CRUD operations and includes user-specific methods.
Since:
2023-12-27
Version:
1.0.0
Author:
notzune
  • Method Details

    • findByUsername

      User findByUsername(String username)
      Retrieves a User entity by its username.
      Parameters:
      username - The username of the User to retrieve.
      Returns:
      The User entity with the specified username, or null if not found.