Package model.entity
Class Post
- java.lang.Object
-
- model.entity.Post
-
- All Implemented Interfaces:
Serializable
@Entity public class Post extends Object implements Serializable
Entità rappresentante un post- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Post.Type
-
Field Summary
Fields Modifier and Type Field Description protected User
author
protected List<Comment>
comments
protected String
content
protected Instant
creationDate
protected Integer
id
protected Section
section
protected String
title
protected Post.Type
type
protected Map<User,PostVote>
votes
protected Integer
votesCount
-
Constructor Summary
Constructors Constructor Description Post()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getCommentCount()
PostVote
getVote(User user)
Ottieni il voto di un utente al post in questione (oint
hashCode()
-
-
-
Field Detail
-
creationDate
protected Instant creationDate
-
votesCount
protected Integer votesCount
-
-
Constructor Detail
-
Post
public Post()
-
-
Method Detail
-
getCommentCount
public int getCommentCount()
-
getVote
public PostVote getVote(User user)
Ottieni il voto di un utente al post in questione (onull
se il voto non è presente)- Parameters:
user
- Riferimento all'utente- Returns:
- Un oggetto
PostVote
-
-