Uses of Class
usecase.auth.AuthenticationRequired
-
Packages that use AuthenticationRequired Package Description usecase.auth Package contenente la logica relativa alle autorizzazioniusecase.comment Package contenente la logica relativa ai commentiusecase.follow Package contenente la logica relativa ai followusecase.post Package contenente la logica relativa ai postusecase.user Package contenente la logica relativa agli utentiusecase.vote Package contenente la logica relativa ai voti -
-
Uses of AuthenticationRequired in usecase.auth
Classes in usecase.auth with annotations of type AuthenticationRequired Modifier and Type Class Description class
AuthenticationRequiredInterceptor
Classe interceptor per confermare l'autenticazione -
Uses of AuthenticationRequired in usecase.comment
Methods in usecase.comment with annotations of type AuthenticationRequired Modifier and Type Method Description void
CommentService. delete(int id)
Cancella un commento dato il suo idvoid
CommentService. editComment(int id, @NotBlank @Size(max=65535) String text)
Modifica un commento dato il suo idint
CommentService. newComment(@NotBlank @Size(max=65535) String text, int postId)
Crea un nuovo commento e ne restituisce l'idint
CommentService. newCommentReply(@NotBlank @Size(max=65535) String text, int parentCommentId)
Crea una risposta a un commento e ne restituisce l'id -
Uses of AuthenticationRequired in usecase.follow
Methods in usecase.follow with annotations of type AuthenticationRequired Modifier and Type Method Description void
FollowService. follow(int sectionId)
Permette di seguire una sezionevoid
FollowService. unFollow(int sectionId)
Permette di togliere il follow ad una sezione -
Uses of AuthenticationRequired in usecase.post
Methods in usecase.post with annotations of type AuthenticationRequired 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 -
Uses of AuthenticationRequired in usecase.user
Methods in usecase.user with annotations of type AuthenticationRequired Modifier and Type Method Description void
UserService. edit(@Valid UserEditPage edit, int id)
Modifica i dati di un utente dato un id -
Uses of AuthenticationRequired in usecase.vote
Methods in usecase.vote with annotations of type AuthenticationRequired Modifier and Type Method Description void
VoteService. downvoteComment(int id)
Aggiunge un voto negativo ad un commentovoid
VoteService. downvotePost(int id)
Aggiunge un voto negativo ad un postvoid
VoteService. unvoteComment(int id)
Rimuove il voto ad un commentovoid
VoteService. unvotePost(int id)
Rimuove il voto ad un postvoid
VoteService. upvoteComment(int id)
Aggiunge un voto positivo ad un commentovoid
VoteService. upvotePost(int id)
Aggiunge un voto positivo ad un post
-