Uses of Class
usecase.auth.DenyBannedUsers
-
Packages that use DenyBannedUsers Package Description usecase.auth Package contenente la logica relativa alle autorizzazioniusecase.comment Package contenente la logica relativa ai commentiusecase.post Package contenente la logica relativa ai post -
-
Uses of DenyBannedUsers in usecase.auth
Classes in usecase.auth with annotations of type DenyBannedUsers Modifier and Type Class Description class
DenyBannedUsersInterceptor
Classe interceptor per negare un'operazione ad un utente bannato. -
Uses of DenyBannedUsers in usecase.comment
Methods in usecase.comment with annotations of type DenyBannedUsers Modifier and Type Method Description int
CommentService. newComment(@NotBlank @Size(max=65535) String text, int postId)
Crea un nuovo commento e ne restituisce l'id -
Uses of DenyBannedUsers in usecase.post
Methods in usecase.post with annotations of type DenyBannedUsers Modifier and Type Method Description void
PostService. delete(int id)
Elimina un post dato il suo idint
PostService. newPost(@NotBlank @Size(max=255) String title, @NotNull BufferedInputStream content, @NotNull String sectionName)
Aggiunge un post ad una sezioneint
PostService. newPost(@NotBlank String title, @Size(max=65535) String body, @NotNull String sectionName)
Aggiunge un post ad una sezione
-