Uses of Class
model.entity.User
-
Packages that use User Package Description model.entity Package contenenti le entità persistentimodel.repository Package contenente la logica per il recupero, l'inserimento e la modifica di entità persistenti -
-
Uses of User in model.entity
Fields in model.entity declared as User Modifier and Type Field Description protected UserComment. authorprotected UserPost. authorprotected UserBan. userprotected UserCommentVote. userprotected UserFollow. userprotected UserPostVote. userFields in model.entity with type parameters of type User Modifier and Type Field Description protected Map<User,Follow>Section. followsprotected Map<User,CommentVote>Comment. votesprotected Map<User,PostVote>Post. votesMethods in model.entity with parameters of type User Modifier and Type Method Description FollowSection. getFollow(User user)Ottieni un'istanza diCommentVoteComment. getVote(User user)Ottieni il voto di un utente al commento in questione (oPostVotePost. getVote(User user)Ottieni il voto di un utente al post in questione (ovoidCommentVote. setUser(User user)voidFollow. setUser(User user)voidPostVote. setUser(User user)Constructors in model.entity with parameters of type User Constructor Description CommentVote(User user, Comment comment, Short vote)Follow(User user, Section section)PostVote(User user, Post post, Short vote) -
Uses of User in model.repository
Methods in model.repository that return User Modifier and Type Method Description UserUserRepository. getByEmail(String email)Restituisce i dati di un utente data un emailMethods in model.repository with parameters of type User Modifier and Type Method Description PostRepository.PostFinderPostRepository.PostFinder. byAuthor(User author)Setta il campo author e restituisce l'istanza passata di PostFinderPostRepository.PostFinderPostRepository.PostFinder. joinUserFollows(User user)Setta il campo joinUserFollows e restituisce l'istanza passata di PostFinder
-