Skip to content

Commit

Permalink
chore[user]: format JavaDoc to be more compact
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Marjoni committed Apr 23, 2026
1 parent 75915e5 commit 46addb5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main/java/edu/group5/app/model/user/UserRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
import edu.group5.app.model.DBRepository;
import edu.group5.app.utils.ParameterValidator;
/**
* Repository class for managing User entities. It provides methods to retrieve users,
* find users by their unique identifier or email address, and initializes the repository with input data.
* The repository uses a HashMap to store User objects for efficient retrieval based on their unique identifier.
* Repository class for managing User entities.
* It provides methods to retrieve users, find users by their unique identifier
* or email address, and initializes the repository with input data.
* The repository uses a HashMap to store
* User objects for efficient retrieval based on their unique identifier.
*/
public class UserRepository extends DBRepository<Integer, User> {
public final static String ROLE_CUSTOMER = "Customer";
Expand Down

0 comments on commit 46addb5

Please sign in to comment.