Package usecase.user
Class BanService
- java.lang.Object
-
- usecase.user.BanService
-
@ApplicationScoped public class BanService extends Object
Classe che fornisce i servizi relativi ai ban.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BanService()
protected
BanService(GenericRepository genericRepository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
addBan(@NotNull @Future Instant date, int userId)
Aggiunge un ban dato l'id di un utente.void
removeBan(int banId)
Rimuove un ban dato il suo idList<BanDTO>
retrieveUserBan(int userId)
Ritorna la lista dei ban di un utente
-
-
-
Constructor Detail
-
BanService
protected BanService()
-
BanService
@Inject protected BanService(GenericRepository genericRepository)
-
-
Method Detail
-
addBan
@AdminsOnly public int addBan(@NotNull @Future @NotNull @Future Instant date, @UserExists int userId)
Aggiunge un ban dato l'id di un utente.- Parameters:
date
- data di fine banuserId
- identificativo utente- Returns:
- entità ban aggiunta
-
removeBan
@AdminsOnly public void removeBan(@BanExists int banId)
Rimuove un ban dato il suo id- Parameters:
banId
- identificativo del ban
-
retrieveUserBan
@AdminsOnly public List<BanDTO> retrieveUserBan(@UserExists int userId)
Ritorna la lista dei ban di un utente- Parameters:
userId
- identificativo utente- Returns:
- lista dei ban relativi all'utente
-
-