int |
BanService.addBan(@NotNull @Future Instant date,
int userId) |
Aggiunge un ban dato l'id di un utente.
|
void |
UserService.delete(int id) |
Elimina un utente dato un id
|
void |
UserService.edit(@Valid UserEditPage edit,
int id) |
Modifica i dati di un utente dato un id
|
UserProfile |
UserService.getUser(int id) |
Ritorna un entita UserProfile dato un id
|
UserProfile |
UserService.getUser(@NotBlank String name) |
Ritorna un entita UserProfile dato un nome
|
String |
UserService.getUsernameById(int id) |
Ritorna un lo username di un utente dato un id
|
List<BanDTO> |
BanService.retrieveUserBan(int userId) |
Ritorna la lista dei ban di un utente
|
void |
UserService.toggleAdmin(int id) |
Inverte lo stato di admin di un utente dato un id
|