Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 39c320ad

Přidáno uživatelem Jakub Šmíd před více než 2 roky(ů)

Added Catalog function
- catalog DTO
- catalog controller
- adding, deleting, updating catalog entries
- getting all catalog entries
re #9164

Zobrazit rozdíly:

backend/src/main/java/cz/zcu/kiv/backendapi/user/IUserService.java
15 15
     */
16 16
    UserEntity getUserByName(String username);
17 17

  
18
    /**
19
     * Registers new user
20
     *
21
     * @param userDto user DTO
22
     */
18 23
    void registerNewUser(UserDto userDto);
19 24

  
20
    void updateUser(UserDto userDto);
25
    void updateUser(String username, UserDto userDto);
21 26

  
22 27
    void deleteUser(String username);
23 28

  
29
    /**
30
     * Returns list of all users
31
     *
32
     * @return list of all users
33
     */
24 34
    List<UserDto> getAllUsers();
25 35
}

Také k dispozici: Unified diff