Package model.repository
Class CommentRepository
- java.lang.Object
-
- model.repository.CommentRepository
-
- All Implemented Interfaces:
Serializable
public class CommentRepository extends Object implements Serializable
Classe che incapsula la logica per il recupero di entità di tipoComment
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected EntityManager
em
-
Constructor Summary
Constructors Constructor Description CommentRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Comment>
getByPost(Post post, int depth)
Trova tutti i commenti di un determinato postList<Comment>
getReplies(Comment comment, int depth)
Trova tutti i commenti di riposta a un determinato commento
-
-
-
Field Detail
-
em
protected EntityManager em
-
-
Constructor Detail
-
CommentRepository
public CommentRepository()
-
-
Method Detail
-
getByPost
public List<Comment> getByPost(Post post, int depth)
Trova tutti i commenti di un determinato post- Parameters:
post
- entità Post di cui si vuole ottenere i commentidepth
- profondità della ricorsione per le risposte ai post- Returns:
- Lista di commenti
-
getReplies
public List<Comment> getReplies(Comment comment, int depth)
Trova tutti i commenti di riposta a un determinato commento- Parameters:
comment
- Entità Comment di cui si vuole ottenere i commentidepth
- profondità della ricorsione per le risposte ai post- Returns:
- Lista di commenti
-
-